Searched refs:ppin (Results 1 – 6 of 6) sorted by relevance
/openssl/crypto/ |
H A D | asn1_dsa.c | 234 const unsigned char **ppin, size_t len) in ossl_decode_der_dsa_sig() argument 240 if (!PACKET_buf_init(&pkt, *ppin, len) in ossl_decode_der_dsa_sig() 249 consumed = PACKET_data(&pkt) - *ppin; in ossl_decode_der_dsa_sig() 250 *ppin += consumed; in ossl_decode_der_dsa_sig()
|
/openssl/include/crypto/ |
H A D | asn1_dsa.h | 21 size_t ossl_decode_der_dsa_sig(BIGNUM *r, BIGNUM *s, const unsigned char **ppin,
|
/openssl/doc/man3/ |
H A D | d2i_RSAPrivateKey.pod | 75 TYPE *d2i_TYPEPrivateKey(TYPE **a, const unsigned char **ppin, long length); 78 TYPE *d2i_TYPEPublicKey(TYPE **a, const unsigned char **ppin, long length); 81 TYPE *d2i_TYPEparams(TYPE **a, const unsigned char **ppin, long length); 84 TYPE *d2i_TYPE_PUBKEY(TYPE **a, const unsigned char **ppin, long length); 121 The function parameters I<ppin> and I<ppout> are generally either both named 265 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
H A D | d2i_X509.pod | 409 TYPE *d2i_TYPE(TYPE **a, const unsigned char **ppin, long length); 424 The function parameters I<ppin> and I<ppout> are generally 432 B<d2i_I<TYPE>>() attempts to decode I<len> bytes at I<*ppin>. If successful a 433 pointer to the B<I<TYPE>> structure is returned and I<*ppin> is incremented to 492 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
/openssl/crypto/dsa/ |
H A D | dsa_sign.c | 50 DSA_SIG *d2i_DSA_SIG(DSA_SIG **psig, const unsigned char **ppin, long len) in d2i_DSA_SIG() argument 68 || ossl_decode_der_dsa_sig(sig->r, sig->s, ppin, (size_t)len) == 0) { in d2i_DSA_SIG()
|
/openssl/crypto/ec/ |
H A D | ec_asn1.c | 1211 ECDSA_SIG *d2i_ECDSA_SIG(ECDSA_SIG **psig, const unsigned char **ppin, long len) in d2i_ECDSA_SIG() argument 1229 || ossl_decode_der_dsa_sig(sig->r, sig->s, ppin, (size_t)len) == 0) { in d2i_ECDSA_SIG()
|
Completed in 16 milliseconds