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

  /external/chromium_org/crypto/
rsa_private_key_nss.cc 208 PrivateKeyInfoCodec private_key_info(true);
212 if (!ReadAttribute(key_, CKA_MODULUS, private_key_info.modulus()) ||
214 private_key_info.public_exponent()) ||
216 private_key_info.private_exponent()) ||
217 !ReadAttribute(key_, CKA_PRIME_1, private_key_info.prime1()) ||
218 !ReadAttribute(key_, CKA_PRIME_2, private_key_info.prime2()) ||
219 !ReadAttribute(key_, CKA_EXPONENT_1, private_key_info.exponent1()) ||
220 !ReadAttribute(key_, CKA_EXPONENT_2, private_key_info.exponent2()) ||
221 !ReadAttribute(key_, CKA_COEFFICIENT, private_key_info.coefficient())) {
226 return private_key_info.Export(output)
    [all...]
  /external/chromium_org/net/ssl/
channel_id_service_unittest.cc 340 std::string private_key_info, der_cert; local
346 host, &private_key_info, &der_cert, callback.callback(),
360 std::vector<uint8> key_vec(private_key_info.begin(), private_key_info.end());
375 std::string private_key_info, der_cert; local
380 &private_key_info,
401 std::string private_key_info, der_cert; local
407 &private_key_info,
426 std::string private_key_info, der_cert; local
431 &private_key_info,
460 std::string private_key_info, der_cert; local
599 std::string private_key_info, der_cert; local
661 std::string private_key_info, der_cert; local
    [all...]
channel_id_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_org/content/child/webcrypto/nss/
rsa_key_nss.cc 262 SECKEYPrivateKeyInfo private_key_info = {}; local
277 &private_key_info.privateKey,
284 arena.get(), &private_key_info.algorithm, algorithm, NULL))
288 arena.get(), &private_key_info.version, kPrivateKeyInfoVersion))
294 &private_key_info,

Completed in 251 milliseconds