HomeSort by relevance Sort by last modified time
    Searched refs:private_key_info (Results 1 - 4 of 4) 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/net/base/
x509_certificate_unittest.cc 866 const uint8 private_key_info[] = { local
    [all...]

Completed in 60 milliseconds