Searched refs:ppout (Results 1 – 4 of 4) sorted by relevance
/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()
|
/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 | 413 int i2d_TYPE(const TYPE *a, unsigned char **ppout); 414 int i2d_TYPE(TYPE *a, unsigned char **ppout); 424 The function parameters I<ppin> and I<ppout> are generally 455 If I<ppout> is not NULL, it writes the DER encoded data to the buffer 456 at I<*ppout>, and increments it to point after the data just written. 460 If I<*ppout> is NULL memory will be allocated for a buffer and the encoded 461 data written to it. In this case I<*ppout> is not incremented and it points 492 The ways that I<*ppin> and I<*ppout> are incremented after the operation
|
/openssl/crypto/ec/ |
H A D | ec_asn1.c | 1239 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 9 milliseconds