![]() |
![]()
| ![]() |
![]()
NAME
SYNOPSIS
PKCS7 *
DESCRIPTION
in is a BIO to read the message from. If cleartext signing is used, then the content is saved in a
memory BIO which is written to
*bcont, otherwise *bcont is set
to The parsed PKCS#7 structure is returned, or
If *bcont is not
Otherwise the type of the returned structure
can be determined using the
To support future functionality, if bcont is
not BIO *cont = NULL; PKCS7 *p7; p7 = SMIME_read_PKCS7(in, &cont); RETURN VALUES
SEE ALSOHISTORY
BUGSThe MIME parser used by The parser assumes that the PKCS7 structure is always base64 encoded, and it will not handle the case where it is in binary format or uses quoted printable format. The use of a memory BIO to hold the signed content limits the size of the message which can be processed due to memory restraints: a streaming single pass option should be available.
|