Home
last modified time | relevance | path

Searched refs:ppout (Results 1 – 4 of 4) sorted by relevance

/openssl/crypto/dsa/
H A Ddsa_sign.c78 int i2d_DSA_SIG(const DSA_SIG *sig, unsigned char **ppout) in i2d_DSA_SIG() argument
84 if (ppout == NULL) { in i2d_DSA_SIG()
87 } else if (*ppout == NULL) { in i2d_DSA_SIG()
94 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_DSA_SIG()
106 if (ppout != NULL) { in i2d_DSA_SIG()
107 if (*ppout == NULL) { in i2d_DSA_SIG()
108 *ppout = (unsigned char *)buf->data; in i2d_DSA_SIG()
112 *ppout += encoded_len; in i2d_DSA_SIG()
/openssl/doc/man3/
H A Dd2i_RSAPrivateKey.pod88 int i2d_TYPEPrivateKey(const TYPE *a, unsigned char **ppout);
89 int i2d_TYPEPrivateKey(TYPE *a, unsigned char **ppout);
94 int i2d_TYPEPublicKey(const TYPE *a, unsigned char **ppout);
95 int i2d_TYPEPublicKey(TYPE *a, unsigned char **ppout);
100 int i2d_TYPEparams(const TYPE *a, unsigned char **ppout);
101 int i2d_TYPEparams(TYPE *a, unsigned char **ppout);
106 int i2d_TYPE_PUBKEY(const TYPE *a, unsigned char **ppout);
107 int i2d_TYPE_PUBKEY(TYPE *a, unsigned char **ppout);
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 Dd2i_X509.pod403 int i2d_TYPE(const TYPE *a, unsigned char **ppout);
404 int i2d_TYPE(TYPE *a, unsigned char **ppout);
414 The function parameters I<ppin> and I<ppout> are generally
445 If I<ppout> is not NULL, it writes the DER encoded data to the buffer
446 at I<*ppout>, and increments it to point after the data just written.
450 If I<*ppout> is NULL memory will be allocated for a buffer and the encoded
451 data written to it. In this case I<*ppout> is not incremented and it points
482 The ways that I<*ppin> and I<*ppout> are incremented after the operation
/openssl/crypto/ec/
H A Dec_asn1.c1239 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **ppout) in i2d_ECDSA_SIG() argument
1245 if (ppout == NULL) { in i2d_ECDSA_SIG()
1248 } else if (*ppout == NULL) { in i2d_ECDSA_SIG()
1255 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_ECDSA_SIG()
1267 if (ppout != NULL) { in i2d_ECDSA_SIG()
1268 if (*ppout == NULL) { in i2d_ECDSA_SIG()
1269 *ppout = (unsigned char *)buf->data; in i2d_ECDSA_SIG()
1273 *ppout += encoded_len; in i2d_ECDSA_SIG()

Completed in 11 milliseconds