Path: blob/main/crypto/openssl/include/internal/cms.h
34879 views
/*1* Copyright 2019-2025 The OpenSSL Project Authors. All Rights Reserved.2*3* Licensed under the Apache License 2.0 (the "License"). You may not use4* this file except in compliance with the License. You can obtain a copy5* in the file LICENSE in the source distribution or at6* https://www.openssl.org/source/license.html7*/8#ifndef OSSL_INTERNAL_CMS_H9# define OSSL_INTERNAL_CMS_H10# pragma once1112# include <openssl/cms.h>1314# ifndef OPENSSL_NO_CMS15CMS_EnvelopedData *ossl_cms_sign_encrypt(BIO *data, X509 *sign_cert, STACK_OF(X509) *certs,16EVP_PKEY *sign_key, unsigned int sign_flags,17STACK_OF(X509) *enc_recip, const EVP_CIPHER *cipher,18unsigned int enc_flags, OSSL_LIB_CTX *libctx,19const char *propq);20# endif /* OPENSSL_NO_CMS */21#endif /* OSSL_INTERNAL_CMS_H */222324