Searched refs:ppout (Results 1 – 4 of 4) sorted by relevance
/openssl-master/crypto/dsa/ |
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()
|
/openssl-master/doc/man3/ |
A D | d2i_RSAPrivateKey.pod | 90 int i2d_TYPEPrivateKey(const TYPE *a, unsigned char **ppout); 91 int i2d_TYPEPrivateKey(TYPE *a, unsigned char **ppout); 96 int i2d_TYPEPublicKey(const TYPE *a, unsigned char **ppout); 97 int i2d_TYPEPublicKey(TYPE *a, unsigned char **ppout); 102 int i2d_TYPEparams(const TYPE *a, unsigned char **ppout); 103 int i2d_TYPEparams(TYPE *a, unsigned char **ppout); 108 int i2d_TYPE_PUBKEY(const TYPE *a, unsigned char **ppout); 109 int i2d_TYPE_PUBKEY(TYPE *a, unsigned char **ppout); 123 The function parameters I<ppin> and I<ppout> are generally either both named 267 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
A D | d2i_X509.pod | 361 int i2d_TYPE(const TYPE *a, unsigned char **ppout); 362 int i2d_TYPE(TYPE *a, unsigned char **ppout); 372 The function parameters I<ppin> and I<ppout> are generally 399 If I<ppout> is not NULL, it writes the DER encoded data to the buffer 400 at I<*ppout>, and increments it to point after the data just written. 404 If I<*ppout> is NULL memory will be allocated for a buffer and the encoded 405 data written to it. In this case I<*ppout> is not incremented and it points 436 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
/openssl-master/crypto/ec/ |
A D | ec_asn1.c | 1237 int i2d_ECDSA_SIG(const ECDSA_SIG *sig, unsigned char **ppout) in i2d_ECDSA_SIG() argument 1243 if (ppout == NULL) { in i2d_ECDSA_SIG() 1246 } else if (*ppout == NULL) { in i2d_ECDSA_SIG() 1253 if (!WPACKET_init_static_len(&pkt, *ppout, SIZE_MAX, 0)) in i2d_ECDSA_SIG() 1265 if (ppout != NULL) { in i2d_ECDSA_SIG() 1266 if (*ppout == NULL) { in i2d_ECDSA_SIG() 1267 *ppout = (unsigned char *)buf->data; in i2d_ECDSA_SIG() 1271 *ppout += encoded_len; in i2d_ECDSA_SIG()
|
Completed in 11 milliseconds