/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 | 179 PrivateKeyInfoCodec private_key_info(true); 183 if (!ReadAttribute(key_, CKA_MODULUS, private_key_info.modulus()) || 185 private_key_info.public_exponent()) || 187 private_key_info.private_exponent()) || 188 !ReadAttribute(key_, CKA_PRIME_1, private_key_info.prime1()) || 189 !ReadAttribute(key_, CKA_PRIME_2, private_key_info.prime2()) || 190 !ReadAttribute(key_, CKA_EXPONENT_1, private_key_info.exponent1()) || 191 !ReadAttribute(key_, CKA_EXPONENT_2, private_key_info.exponent2()) || 192 !ReadAttribute(key_, CKA_COEFFICIENT, private_key_info.coefficient())) { 197 return private_key_info.Export(output) [all...] |
/external/chromium_org/net/ssl/ |
server_bound_cert_service_unittest.cc | 346 std::string private_key_info, der_cert; local 352 host, &private_key_info, &der_cert, callback.callback(), 366 std::vector<uint8> key_vec(private_key_info.begin(), private_key_info.end()); 381 std::string private_key_info, der_cert; local 386 &private_key_info, 407 std::string private_key_info, der_cert; local 413 &private_key_info, 432 std::string private_key_info, der_cert; local 437 &private_key_info, 466 std::string private_key_info, der_cert; local 605 std::string private_key_info, der_cert; local 667 std::string private_key_info, der_cert; local [all...] |
server_bound_cert_service.cc | 100 std::vector<uint8> private_key_info; local 114 1, &private_key_info)) { 122 std::string key_out(private_key_info.begin(), private_key_info.end());
|
/external/chromium_org/content/browser/media/ |
webrtc_identity_store.cc | 58 std::vector<uint8> private_key_info; local 59 if (!key->ExportPrivateKey(&private_key_info)) { 66 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...] |