Searched refs:ppout (Results 1 – 4 of 4) sorted by relevance
/freebsd/crypto/openssl/crypto/dsa/ |
H A D | dsa_sign.c | 79 int i2d_DSA_SIG(const DSA_SIG *sig, unsigned char **ppout) in i2d_DSA_SIG() argument 85 if (ppout == NULL) { in i2d_DSA_SIG() 88 } else if (*ppout == NULL) { in i2d_DSA_SIG() 95 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_DSA_SIG() 107 if (ppout != NULL) { in i2d_DSA_SIG() 108 if (*ppout == NULL) { in i2d_DSA_SIG() 109 *ppout = (unsigned char *)buf->data; in i2d_DSA_SIG() 113 *ppout += encoded_len; in i2d_DSA_SIG()
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | d2i_RSAPrivateKey.pod | 88 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 D | d2i_X509.pod | 367 int i2d_TYPE(const TYPE *a, unsigned char **ppout); 368 int i2d_TYPE(TYPE *a, unsigned char **ppout); 378 The function parameters I<ppin> and I<ppout> are generally 409 If I<ppout> is not NULL, it writes the DER encoded data to the buffer 410 at I<*ppout>, and increments it to point after the data just written. 414 If I<*ppout> is NULL memory will be allocated for a buffer and the encoded 415 data written to it. In this case I<*ppout> is not incremented and it points 446 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
/freebsd/crypto/openssl/crypto/ec/ |
H A D | ec_asn1.c | 1247 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **ppout) in i2d_ECDSA_SIG() argument 1253 if (ppout == NULL) { in i2d_ECDSA_SIG() 1256 } else if (*ppout == NULL) { in i2d_ECDSA_SIG() 1263 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_ECDSA_SIG() 1275 if (ppout != NULL) { in i2d_ECDSA_SIG() 1276 if (*ppout == NULL) { in i2d_ECDSA_SIG() 1277 *ppout = (unsigned char *)buf->data; in i2d_ECDSA_SIG() 1281 *ppout += encoded_len; in i2d_ECDSA_SIG()
|