Home | History | Annotate | Download | only in pkcs8

Lines Matching defs:key

28 // openssl pkcs12 -export -inkey key.pem -in cacert.pem
463 // kWindows is a dummy key and certificate exported from the certificate
683 // openssl pkcs12 -export -inkey key.pem -in cert.pem -keypbe AES-128-CBC -certpbe AES-128-CBC
907 EVP_PKEY *key = nullptr;
909 ASSERT_TRUE(PKCS12_get_key_and_certs(&key, certs.get(), &pkcs12, kPassword));
910 bssl::UniquePtr<EVP_PKEY> delete_key(key);
913 ASSERT_TRUE(key);
926 EVP_PKEY *key = nullptr;
929 ASSERT_TRUE(PKCS12_parse(p12.get(), kPassword, &key, &cert, &ca_certs));
931 bssl::UniquePtr<EVP_PKEY> delete_key(key);
935 ASSERT_TRUE(key);