Skip to content

Commit 539b953

Browse files
committed
initial work creating the most basic CMS_ContentInfo object
CMS_SignedInfo structure can not be created or freed, as it is just a pointer into CMS_ContentInfo stack.
1 parent 18ec883 commit 539b953

File tree

5 files changed

+785
-0
lines changed

5 files changed

+785
-0
lines changed

ext/openssl/ossl.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,6 +1202,7 @@ Init_openssl(void)
12021202
Init_ossl_ns_spki();
12031203
Init_ossl_pkcs12();
12041204
Init_ossl_pkcs7();
1205+
Init_ossl_cms();
12051206
Init_ossl_pkey();
12061207
Init_ossl_rand();
12071208
Init_ossl_ssl();

ext/openssl/ossl.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
#include <openssl/ssl.h>
2525
#include <openssl/pkcs12.h>
2626
#include <openssl/pkcs7.h>
27+
#include <openssl/cms.h>
2728
#include <openssl/hmac.h>
2829
#include <openssl/rand.h>
2930
#include <openssl/conf.h>
@@ -165,6 +166,7 @@ void ossl_debug(const char *, ...);
165166
#include "ossl_ocsp.h"
166167
#include "ossl_pkcs12.h"
167168
#include "ossl_pkcs7.h"
169+
#include "ossl_cms.h"
168170
#include "ossl_pkey.h"
169171
#include "ossl_rand.h"
170172
#include "ossl_ssl.h"

0 commit comments

Comments
 (0)