Lines Matching refs:pp

28 d2i_PrivateKey_decoder(int keytype, EVP_PKEY **a, const unsigned char **pp,  in d2i_PrivateKey_decoder()  argument
38 const unsigned char *p = *pp; in d2i_PrivateKey_decoder()
51 p8info = d2i_PKCS8_PRIV_KEY_INFO(NULL, pp, len); in d2i_PrivateKey_decoder()
63 *pp = p; in d2i_PrivateKey_decoder()
74 ret = OSSL_DECODER_from_data(dctx, pp, &len); in d2i_PrivateKey_decoder()
91 ossl_d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a, const unsigned char **pp, in ossl_d2i_PrivateKey_legacy() argument
95 const unsigned char *p = *pp; in ossl_d2i_PrivateKey_legacy()
146 *pp = p; in ossl_d2i_PrivateKey_legacy()
156 EVP_PKEY *d2i_PrivateKey_ex(int keytype, EVP_PKEY **a, const unsigned char **pp, in d2i_PrivateKey_ex() argument
162 ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex()
165 ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex()
169 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp, in d2i_PrivateKey() argument
172 return d2i_PrivateKey_ex(type, a, pp, length, NULL, NULL); in d2i_PrivateKey()
176 const unsigned char **pp, in d2i_AutoPrivateKey_legacy() argument
185 p = *pp; in d2i_AutoPrivateKey_legacy()
192 p = *pp; in d2i_AutoPrivateKey_legacy()
215 *pp = p; in d2i_AutoPrivateKey_legacy()
224 return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_legacy()
231 EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp, in d2i_AutoPrivateKey_ex() argument
237 ret = d2i_PrivateKey_decoder(EVP_PKEY_NONE, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_ex()
240 ret = d2i_AutoPrivateKey_legacy(a, pp, length, libctx, propq); in d2i_AutoPrivateKey_ex()
244 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp, in d2i_AutoPrivateKey() argument
247 return d2i_AutoPrivateKey_ex(a, pp, length, NULL, NULL); in d2i_AutoPrivateKey()