HomeSort by relevance Sort by last modified time
    Searched full:private_key_info (Results 1 - 9 of 9) sorted by null

  /external/chromium/crypto/
rsa_private_key_nss.cc 147 PrivateKeyInfoCodec private_key_info(true);
151 if (!ReadAttribute(key_, CKA_MODULUS, private_key_info.modulus()) ||
153 private_key_info.public_exponent()) ||
155 private_key_info.private_exponent()) ||
156 !ReadAttribute(key_, CKA_PRIME_1, private_key_info.prime1()) ||
157 !ReadAttribute(key_, CKA_PRIME_2, private_key_info.prime2()) ||
158 !ReadAttribute(key_, CKA_EXPONENT_1, private_key_info.exponent1()) ||
159 !ReadAttribute(key_, CKA_EXPONENT_2, private_key_info.exponent2()) ||
160 !ReadAttribute(key_, CKA_COEFFICIENT, private_key_info.coefficient())) {
165 return private_key_info.Export(output)
    [all...]
rsa_private_key_mac.cc 188 PrivateKeyInfoCodec private_key_info(true);
192 return (private_key_info.Import(private_key_data) &&
193 private_key_info.ExportPublicKeyInfo(output));
rsa_private_key_unittest.cc 54 const uint8 private_key_info[] = { local
162 input.resize(sizeof(private_key_info));
163 memcpy(&input.front(), private_key_info, sizeof(private_key_info));
  /external/chromium_org/crypto/
rsa_private_key_nss.cc 166 PrivateKeyInfoCodec private_key_info(true);
170 if (!ReadAttribute(key_, CKA_MODULUS, private_key_info.modulus()) ||
172 private_key_info.public_exponent()) ||
174 private_key_info.private_exponent()) ||
175 !ReadAttribute(key_, CKA_PRIME_1, private_key_info.prime1()) ||
176 !ReadAttribute(key_, CKA_PRIME_2, private_key_info.prime2()) ||
177 !ReadAttribute(key_, CKA_EXPONENT_1, private_key_info.exponent1()) ||
178 !ReadAttribute(key_, CKA_EXPONENT_2, private_key_info.exponent2()) ||
179 !ReadAttribute(key_, CKA_COEFFICIENT, private_key_info.coefficient())) {
184 return private_key_info.Export(output)
    [all...]
  /external/chromium_org/net/ssl/
server_bound_cert_service_unittest.cc 261 std::string private_key_info, der_cert; local
267 host, &private_key_info, &der_cert, callback.callback(),
281 std::vector<uint8> key_vec(private_key_info.begin(), private_key_info.end());
296 std::string private_key_info, der_cert; local
301 &private_key_info,
324 std::string private_key_info, der_cert; local
330 &private_key_info,
351 std::string private_key_info, der_cert; local
356 &private_key_info,
390 std::string private_key_info, der_cert; local
529 std::string private_key_info, der_cert; local
560 std::string private_key_info, der_cert; local
    [all...]
server_bound_cert_service.cc 99 std::vector<uint8> private_key_info; local
115 1, &private_key_info)) {
123 std::string key_out(private_key_info.begin(), private_key_info.end());
  /external/chromium_org/content/browser/media/
webrtc_identity_store.cc 62 std::vector<uint8> private_key_info; local
63 if (!key->ExportPrivateKey(&private_key_info)) {
70 std::string(private_key_info.begin(), private_key_info.end());
  /external/chromium_org/net/cert/
x509_util_unittest.cc 82 const uint8 private_key_info[] = { local
166 input.resize(sizeof(private_key_info));
167 memcpy(&input.front(), private_key_info, sizeof(private_key_info));
  /external/chromium/net/base/
x509_certificate_unittest.cc 866 const uint8 private_key_info[] = { local
    [all...]

Completed in 337 milliseconds