Searched refs:ppout (Results 1 – 4 of 4) sorted by relevance
| /freebsd/crypto/openssl/crypto/dsa/ |
| H A D | dsa_sign.c | 78 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()
|
| /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 | 455 int i2d_TYPE(const TYPE *a, unsigned char **ppout); 456 int i2d_TYPE(TYPE *a, unsigned char **ppout); 466 The function parameters I<ppin> and I<ppout> are generally 497 If I<ppout> is not NULL, it writes the DER encoded data to the buffer 498 at I<*ppout>, and increments it to point after the data just written. 502 If I<*ppout> is NULL memory will be allocated for a buffer and the encoded 503 data written to it. In this case I<*ppout> is not incremented and it points 534 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
| /freebsd/crypto/openssl/crypto/ec/ |
| H A D | ec_asn1.c | 1227 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **ppout) in i2d_ECDSA_SIG() argument 1233 if (ppout == NULL) { in i2d_ECDSA_SIG() 1236 } else if (*ppout == NULL) { in i2d_ECDSA_SIG() 1243 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_ECDSA_SIG() 1255 if (ppout != NULL) { in i2d_ECDSA_SIG() 1256 if (*ppout == NULL) { in i2d_ECDSA_SIG() 1257 *ppout = (unsigned char *)buf->data; in i2d_ECDSA_SIG() 1261 *ppout += encoded_len; in i2d_ECDSA_SIG()
|