Lines Matching refs:pp
27 d2i_PrivateKey_decoder(int keytype, EVP_PKEY **a, const unsigned char **pp, in d2i_PrivateKey_decoder() argument
45 const unsigned char *p = *pp; in d2i_PrivateKey_decoder()
57 ret = OSSL_DECODER_from_data(dctx, pp, &len); in d2i_PrivateKey_decoder()
66 *pp = p; in d2i_PrivateKey_decoder()
78 ossl_d2i_PrivateKey_legacy(int keytype, EVP_PKEY **a, const unsigned char **pp, in ossl_d2i_PrivateKey_legacy() argument
82 const unsigned char *p = *pp; in ossl_d2i_PrivateKey_legacy()
133 *pp = p; in ossl_d2i_PrivateKey_legacy()
143 EVP_PKEY *d2i_PrivateKey_ex(int keytype, EVP_PKEY **a, const unsigned char **pp, in d2i_PrivateKey_ex() argument
149 ret = d2i_PrivateKey_decoder(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex()
152 ret = ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_PrivateKey_ex()
156 EVP_PKEY *d2i_PrivateKey(int type, EVP_PKEY **a, const unsigned char **pp, in d2i_PrivateKey() argument
159 return d2i_PrivateKey_ex(type, a, pp, length, NULL, NULL); in d2i_PrivateKey()
163 const unsigned char **pp, in d2i_AutoPrivateKey_legacy() argument
172 p = *pp; in d2i_AutoPrivateKey_legacy()
179 p = *pp; in d2i_AutoPrivateKey_legacy()
202 *pp = p; in d2i_AutoPrivateKey_legacy()
211 return ossl_d2i_PrivateKey_legacy(keytype, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_legacy()
218 EVP_PKEY *d2i_AutoPrivateKey_ex(EVP_PKEY **a, const unsigned char **pp, in d2i_AutoPrivateKey_ex() argument
224 ret = d2i_PrivateKey_decoder(EVP_PKEY_NONE, a, pp, length, libctx, propq); in d2i_AutoPrivateKey_ex()
227 ret = d2i_AutoPrivateKey_legacy(a, pp, length, libctx, propq); in d2i_AutoPrivateKey_ex()
231 EVP_PKEY *d2i_AutoPrivateKey(EVP_PKEY **a, const unsigned char **pp, in d2i_AutoPrivateKey() argument
234 return d2i_AutoPrivateKey_ex(a, pp, length, NULL, NULL); in d2i_AutoPrivateKey()