X-Git-Url: https://code.wpia.club/?a=blobdiff_plain;f=lib%2Fopenssl%2Fdoc%2Fcrypto%2FCMS_get0_SignerInfos.pod;h=c8071591f3f3679446227d5ce37bea2be2f9b59c;hb=02ed66432c92de70694700164f986190aad3cbc5;hp=47f6d2a04726bf296d7764cdbcacbee1a9b37f58;hpb=89016837dcbf2775cd15dc8cbaba00dc6379f86e;p=cassiopeia.git diff --git a/lib/openssl/doc/crypto/CMS_get0_SignerInfos.pod b/lib/openssl/doc/crypto/CMS_get0_SignerInfos.pod index 47f6d2a..c807159 100644 --- a/lib/openssl/doc/crypto/CMS_get0_SignerInfos.pod +++ b/lib/openssl/doc/crypto/CMS_get0_SignerInfos.pod @@ -2,7 +2,10 @@ =head1 NAME - CMS_get0_SignerInfos, CMS_SignerInfo_get0_signer_id, CMS_SignerInfo_cert_cmp, CMS_set1_signer_certs - CMS signedData signer functions. +CMS_SignerInfo_set1_signer_cert, +CMS_get0_SignerInfos, CMS_SignerInfo_get0_signer_id, +CMS_SignerInfo_get0_signature, CMS_SignerInfo_cert_cmp, +- CMS signedData signer functions =head1 SYNOPSIS @@ -11,6 +14,7 @@ STACK_OF(CMS_SignerInfo) *CMS_get0_SignerInfos(CMS_ContentInfo *cms); int CMS_SignerInfo_get0_signer_id(CMS_SignerInfo *si, ASN1_OCTET_STRING **keyid, X509_NAME **issuer, ASN1_INTEGER **sno); + ASN1_OCTET_STRING *CMS_SignerInfo_get0_signature(CMS_SignerInfo *si); int CMS_SignerInfo_cert_cmp(CMS_SignerInfo *si, X509 *cert); void CMS_SignerInfo_set1_signer_cert(CMS_SignerInfo *si, X509 *signer); @@ -24,6 +28,11 @@ associated with a specific CMS_SignerInfo structure B. Either the keyidentifier will be set in B or B issuer name and serial number in B and B. +CMS_SignerInfo_get0_signature() retrieves the signature associated with +B in a pointer to an ASN1_OCTET_STRING structure. This pointer returned +corresponds to the internal signature value if B so it may be read or +modified. + CMS_SignerInfo_cert_cmp() compares the certificate B against the signer identifier B. It returns zero if the comparison is successful and non zero if not. @@ -62,14 +71,19 @@ zero otherwise. CMS_SignerInfo_set1_signer_cert() does not return a value. -Any error can be obtained from L +Any error can be obtained from L =head1 SEE ALSO -L, L +L, L + +=head1 COPYRIGHT -=head1 HISTORY +Copyright 2008-2016 The OpenSSL Project Authors. All Rights Reserved. -These functions were first was added to OpenSSL 0.9.8 +Licensed under the OpenSSL license (the "License"). You may not use +this file except in compliance with the License. You can obtain a copy +in the file LICENSE in the source distribution or at +L. =cut