hx509_cms - Online Linux Manual PageSection : 3
Updated : Tue Nov 15 2022
Source : Version 7.8.0
Note : Heimdal x509 library

NAMEhx509_cms − hx509 CMS/pkcs7 functions

SYNOPSIS

Functionsint hx509_cms_wrap_ContentInfo (const heim_oid *oid, const heim_octet_string *buf, heim_octet_string *res)
int hx509_cms_unwrap_ContentInfo (const heim_octet_string *in, heim_oid *oid, heim_octet_string *out, int *have_data)
int hx509_cms_unenvelope (hx509_context context, hx509_certs certs, int flags, const void *data, size_t length, const heim_octet_string *encryptedContent, time_t time_now, heim_oid *contentType, heim_octet_string *content)
int hx509_cms_envelope_1 (hx509_context context, int flags, hx509_cert cert, const void *data, size_t length, const heim_oid *encryption_type, const heim_oid *contentType, heim_octet_string *content)
int hx509_cms_verify_signed (hx509_context context, hx509_verify_ctx ctx, unsigned int flags, const void *data, size_t length, const heim_octet_string *signedContent, hx509_certs pool, heim_oid *contentType, heim_octet_string *content, hx509_certs *signer_certs)
int hx509_cms_create_signed_1 (hx509_context context, int flags, const heim_oid *eContentType, const void *data, size_t length, const AlgorithmIdentifier *digest_alg, hx509_cert cert, hx509_peer_info peer, hx509_certs anchors, hx509_certs pool, heim_octet_string *signed_data)

Detailed DescriptionSee the CMS/PKCS7 message functions​. for description and examples​.

Function Documentation

int hx509_cms_create_signed_1 (hx509_context context, int flags, const heim_oid * eContentType, const void * data, size_t length, const AlgorithmIdentifier * digest_alg, hx509_cert cert, hx509_peer_info peer, hx509_certs anchors, hx509_certs pool, heim_octet_string * signed_data)Decode SignedData and verify that the signature is correct​. Parameters context A hx509 context​.
flags
eContentType the type of the data​.
data data to sign
length length of the data that data point to​.
digest_alg digest algorithm to use, use NULL to get the default or the peer determined algorithm​.
cert certificate to use for sign the data​.
peer info about the peer the message to send the message to, like what digest algorithm to use​.
anchors trust anchors that the client will use, used to polulate the certificates included in the message
pool certificates to use in try to build the path to the trust anchors​.
signed_data the output of the function, free with der_free_octet_string()​.
Returns Returns an hx509 error code​.

int hx509_cms_envelope_1 (hx509_context context, int flags, hx509_cert cert, const void * data, size_t length, const heim_oid * encryption_type, const heim_oid * contentType, heim_octet_string * content)Encrypt end encode EnvelopedData​. Encrypt and encode EnvelopedData​. The data is encrypted with a random key and the the random key is encrypted with the certificates private key​. This limits what private key type can be used to RSA​. Parameters context A hx509 context​.
flags flags to control the behavior​.
• HX509_CMS_EV_NO_KU_CHECK - Don't check KU on certificate • HX509_CMS_EV_ALLOW_WEAK - Allow weak crytpo • HX509_CMS_EV_ID_NAME - prefer issuer name and serial number
cert Certificate to encrypt the EnvelopedData encryption key with​.
data pointer the data to encrypt​.
length length of the data that data point to​.
encryption_type Encryption cipher to use for the bulk data, use NULL to get default​.
contentType type of the data that is encrypted
content the output of the function, free with der_free_octet_string()​.
Returns an hx509 error code​.

int hx509_cms_unenvelope (hx509_context context, hx509_certs certs, int flags, const void * data, size_t length, const heim_octet_string * encryptedContent, time_t time_now, heim_oid * contentType, heim_octet_string * content)Decode and unencrypt EnvelopedData​. Extract data and parameteres from from the EnvelopedData​. Also supports using detached EnvelopedData​. Parameters context A hx509 context​.
certs Certificate that can decrypt the EnvelopedData encryption key​.
flags HX509_CMS_UE flags to control the behavior​.
data pointer the structure the contains the DER/BER encoded EnvelopedData stucture​.
length length of the data that data point to​.
encryptedContent in case of detached signature, this contains the actual encrypted data, othersize its should be NULL​.
time_now set the current time, if zero the library uses now as the date​.
contentType output type oid, should be freed with der_free_oid()​.
content the data, free with der_free_octet_string()​.
Returns an hx509 error code​.

int hx509_cms_unwrap_ContentInfo (const heim_octet_string * in, heim_oid * oid, heim_octet_string * out, int * have_data)Decode an ContentInfo and unwrap data and oid it​. Parameters in the encoded buffer​.
oid type of the content​.
out data to be wrapped​.
have_data since the data is optional, this flags show dthe diffrence between no data and the zero length data​.
Returns Returns an hx509 error code​.

int hx509_cms_verify_signed (hx509_context context, hx509_verify_ctx ctx, unsigned int flags, const void * data, size_t length, const heim_octet_string * signedContent, hx509_certs pool, heim_oid * contentType, heim_octet_string * content, hx509_certs * signer_certs)Decode SignedData and verify that the signature is correct​. Parameters context A hx509 context​.
ctx a hx509 verify context​.
flags to control the behaivor of the function​.
• HX509_CMS_VS_NO_KU_CHECK - Don't check KeyUsage • HX509_CMS_VS_ALLOW_DATA_OID_MISMATCH - allow oid mismatch • HX509_CMS_VS_ALLOW_ZERO_SIGNER - no signer, see below​.
data pointer to CMS SignedData encoded data​.
length length of the data that data point to​.
signedContent external data used for signature​.
pool certificate pool to build certificates paths​.
contentType free with der_free_oid()​.
content the output of the function, free with der_free_octet_string()​.
signer_certs list of the cerficates used to sign this request, free with hx509_certs_free()​.
Returns an hx509 error code​. If HX509_CMS_VS_NO_KU_CHECK is set, allow more liberal search for matching certificates by not considering KeyUsage bits on the certificates​. If HX509_CMS_VS_ALLOW_DATA_OID_MISMATCH, allow encapContentInfo mismatch with the oid in signedAttributes (or if no signedAttributes where use, pkcs7-data oid)​. This is only needed to work with broken CMS implementations that doesn't follow CMS signedAttributes rules​. If HX509_CMS_VS_NO_VALIDATE flags is set, do not verify the signing certificates and leave that up to the caller​. If HX509_CMS_VS_ALLOW_ZERO_SIGNER is set, allow empty SignerInfo (no signatures)​. If SignedData have no signatures, the function will return 0 with signer_certs set to NULL​. Zero signers is allowed by the standard, but since its only useful in corner cases, it make into a flag that the caller have to turn on​.

int hx509_cms_wrap_ContentInfo (const heim_oid * oid, const heim_octet_string * buf, heim_octet_string * res)Wrap data and oid in a ContentInfo and encode it​. Parameters oid type of the content​.
buf data to be wrapped​. If a NULL pointer is passed in, the optional content field in the ContentInfo is not going be filled in​.
res the encoded buffer, the result should be freed with der_free_octet_string()​.
Returns Returns an hx509 error code​.

AuthorGenerated automatically by Doxygen for Heimdal x509 library from the source code​.
0
Johanes Gumabo
Data Size   :   26,300 byte
man-hx509_cms.3Build   :   2024-12-05, 20:55   :  
Visitor Screen   :   x
Visitor Counter ( page / site )   :   4 / 165,176
Visitor ID   :     :  
Visitor IP   :   52.14.176.111   :  
Visitor Provider   :   AMAZON-02   :  
Provider Position ( lat x lon )   :   39.962500 x -83.006100   :   x
Provider Accuracy Radius ( km )   :   1000   :  
Provider City   :   Columbus   :  
Provider Province   :   Ohio ,   :   ,
Provider Country   :   United States   :  
Provider Continent   :   North America   :  
Visitor Recorder   :   Version   :  
Visitor Recorder   :   Library   :  
Online Linux Manual Page   :   Version   :   Online Linux Manual Page - Fedora.40 - march=x86-64 - mtune=generic - 24.12.05
Online Linux Manual Page   :   Library   :   lib_c - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Online Linux Manual Page   :   Library   :   lib_m - 24.10.03 - march=x86-64 - mtune=generic - Fedora.40
Data Base   :   Version   :   Online Linux Manual Page Database - 24.04.13 - march=x86-64 - mtune=generic - fedora-38
Data Base   :   Library   :   lib_c - 23.02.07 - march=x86-64 - mtune=generic - fedora.36

Very long time ago, I have the best tutor, Wenzel Svojanovsky . If someone knows the email address of Wenzel Svojanovsky , please send an email to johanes_gumabo@yahoo.co.id .
If error, please print screen and send to johanes_gumabo@yahoo.co.id
Under development. Support me via PayPal.