Home | History | Annotate | Download | only in Pk

Lines Matching defs:Key

27   @param[in]  PrivateKey       Pointer to the PEM-formatted private key data for

29 @param[in] PrivateKeySize Size of the PEM private key data in bytes.
31 key data.
60 EVP_PKEY *Key;
77 Key = NULL;
83 // Retrieve RSA private key from PEM data.
113 // Construct OpenSSL EVP_PKEY for private key.
115 Key = EVP_PKEY_new ();
116 if (Key == NULL) {
119 if (EVP_PKEY_assign_RSA (Key, (RSA *) RsaContext) == 0) {
140 Key,
189 if (Key != NULL) {
190 Key->pkey.rsa = NULL;
194 if (Key != NULL) {
195 EVP_PKEY_free (Key);