diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:28:03 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-07-28 10:28:03 +0000 |
commit | ab03334f7ceb91469c7363cf0ce874be709af4c5 (patch) | |
tree | 5b5db01845b78740037a04438b8693da2d7be868 /lib/libcrypto/hidden/openssl | |
parent | c6195fa0b5f05461c0adce9466b7727cccaf06a2 (diff) |
Provide CMS{,_SignerInfo}_get_version
Add accessors for the syntax versions of ContentInfo and SignerInfo.
These will be used soon in rpki-client for some more compliance checks.
ok job jsing
Diffstat (limited to 'lib/libcrypto/hidden/openssl')
-rw-r--r-- | lib/libcrypto/hidden/openssl/cms.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libcrypto/hidden/openssl/cms.h b/lib/libcrypto/hidden/openssl/cms.h index c777e857d8f..0f450e603ca 100644 --- a/lib/libcrypto/hidden/openssl/cms.h +++ b/lib/libcrypto/hidden/openssl/cms.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cms.h,v 1.1 2023/07/08 08:26:26 beck Exp $ */ +/* $OpenBSD: cms.h,v 1.2 2023/07/28 10:28:02 tb Exp $ */ /* * Copyright (c) 2023 Bob Beck <beck@openbsd.org> * @@ -35,6 +35,8 @@ LCRYPTO_USED(d2i_CMS_ReceiptRequest); LCRYPTO_USED(i2d_CMS_ReceiptRequest); LCRYPTO_USED(CMS_ContentInfo_print_ctx); LCRYPTO_USED(CMS_get0_type); +LCRYPTO_USED(CMS_get_version); +LCRYPTO_USED(CMS_SignerInfo_get_version); LCRYPTO_USED(CMS_dataInit); LCRYPTO_USED(CMS_dataFinal); LCRYPTO_USED(CMS_is_detached); |