File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,6 +21,22 @@ static inline void EVP_PKEY_assign_wrapper(EVP_PKEY *pkey, RSA *rsakey) {
2121 EVP_PKEY_assign (pkey , EVP_PKEY_RSA , rsakey );
2222}
2323
24+ static inline STACK_OF (CMS_SignerInfo ) * STACK_CMS_SignerInfo_new_null () {
25+ return SKM_sk_new_null (CMS_SignerInfo );
26+ }
27+
28+ static inline void STACK_CMS_SignerInfo_free (STACK_OF (CMS_SignerInfo ) * stack ) {
29+ SKM_sk_free (CMS_SignerInfo , stack );
30+ }
31+
32+ static inline int STACK_CMS_SignerInfo_push (STACK_OF (CMS_SignerInfo ) * stack , void * data ) {
33+ return SKM_sk_push (CMS_SignerInfo , stack , data );
34+ }
35+
36+ static inline void * STACK_CMS_SignerInfo_pop (STACK_OF (CMS_SignerInfo ) * stack ) {
37+ return SKM_sk_pop (CMS_SignerInfo , stack );
38+ }
39+
2440static inline STACK_OF (X509 ) * STACK_X509_new_null () {
2541 return SKM_sk_new_null (X509 );
2642}
You can’t perform that action at this time.
0 commit comments