mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 00:52:02 +00:00
Added openSSL header files for x86_64, ppc64le, s309x, aarch64 platforms
This commit is contained in:
parent
aee8329a61
commit
6406043294
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/cmp.h.in
|
* Generated by Makefile from include/openssl/cmp.h.in
|
||||||
*
|
*
|
||||||
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
* Copyright Nokia 2007-2019
|
* Copyright Nokia 2007-2019
|
||||||
* Copyright Siemens AG 2015-2019
|
* Copyright Siemens AG 2015-2019
|
||||||
*
|
*
|
||||||
@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
|
|||||||
* -- CertReqMsg
|
* -- CertReqMsg
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
# define OSSL_CMP_PKISTATUS_accepted 0
|
# define OSSL_CMP_PKISTATUS_request -3
|
||||||
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
# define OSSL_CMP_PKISTATUS_trans -2
|
||||||
# define OSSL_CMP_PKISTATUS_rejection 2
|
# define OSSL_CMP_PKISTATUS_unspecified -1
|
||||||
# define OSSL_CMP_PKISTATUS_waiting 3
|
# define OSSL_CMP_PKISTATUS_accepted 0
|
||||||
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
||||||
|
# define OSSL_CMP_PKISTATUS_rejection 2
|
||||||
|
# define OSSL_CMP_PKISTATUS_waiting 3
|
||||||
|
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
||||||
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
||||||
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
||||||
|
|
||||||
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
||||||
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
||||||
@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
|
|||||||
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
||||||
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
||||||
const unsigned char *ref, int len);
|
const unsigned char *ref, int len);
|
||||||
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
|
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
|
||||||
const int len);
|
const unsigned char *sec, int len);
|
||||||
/* CMP message header and extra certificates: */
|
/* CMP message header and extra certificates: */
|
||||||
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
||||||
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
||||||
|
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
|
||||||
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
||||||
STACK_OF(X509) *extraCertsOut);
|
STACK_OF(X509) *extraCertsOut);
|
||||||
/* certificate template: */
|
/* certificate template: */
|
||||||
@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
|
|||||||
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
|
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
||||||
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
||||||
const char *propq);
|
const char *propq);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/opensslv.h.in
|
* Generated by Makefile from include/openssl/opensslv.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
@ -29,7 +29,7 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_MAJOR 3
|
# define OPENSSL_VERSION_MAJOR 3
|
||||||
# define OPENSSL_VERSION_MINOR 0
|
# define OPENSSL_VERSION_MINOR 0
|
||||||
# define OPENSSL_VERSION_PATCH 7
|
# define OPENSSL_VERSION_PATCH 10
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Additional version information
|
* Additional version information
|
||||||
@ -74,21 +74,21 @@ extern "C" {
|
|||||||
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
||||||
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_STR "3.0.7"
|
# define OPENSSL_VERSION_STR "3.0.10"
|
||||||
# define OPENSSL_FULL_VERSION_STR "3.0.7"
|
# define OPENSSL_FULL_VERSION_STR "3.0.10"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 3: ADDITIONAL METADATA
|
* SECTION 3: ADDITIONAL METADATA
|
||||||
*
|
*
|
||||||
* These strings are defined separately to allow them to be parsable.
|
* These strings are defined separately to allow them to be parsable.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
|
# define OPENSSL_RELEASE_DATE "1 Aug 2023"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 4: BACKWARD COMPATIBILITY
|
* SECTION 4: BACKWARD COMPATIBILITY
|
||||||
*/
|
*/
|
||||||
|
|
||||||
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7 1 Nov 2022"
|
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10 1 Aug 2023"
|
||||||
|
|
||||||
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
||||||
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/x509v3.h.in
|
* Generated by Makefile from include/openssl/x509v3.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||||
* this file except in compliance with the License. You can obtain a copy
|
* this file except in compliance with the License. You can obtain a copy
|
||||||
@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
|
|||||||
OTHERNAME *otherName; /* otherName */
|
OTHERNAME *otherName; /* otherName */
|
||||||
ASN1_IA5STRING *rfc822Name;
|
ASN1_IA5STRING *rfc822Name;
|
||||||
ASN1_IA5STRING *dNSName;
|
ASN1_IA5STRING *dNSName;
|
||||||
ASN1_TYPE *x400Address;
|
ASN1_STRING *x400Address;
|
||||||
X509_NAME *directoryName;
|
X509_NAME *directoryName;
|
||||||
EDIPARTYNAME *ediPartyName;
|
EDIPARTYNAME *ediPartyName;
|
||||||
ASN1_IA5STRING *uniformResourceIdentifier;
|
ASN1_IA5STRING *uniformResourceIdentifier;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/cmp.h.in
|
* Generated by Makefile from include/openssl/cmp.h.in
|
||||||
*
|
*
|
||||||
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
* Copyright Nokia 2007-2019
|
* Copyright Nokia 2007-2019
|
||||||
* Copyright Siemens AG 2015-2019
|
* Copyright Siemens AG 2015-2019
|
||||||
*
|
*
|
||||||
@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
|
|||||||
* -- CertReqMsg
|
* -- CertReqMsg
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
# define OSSL_CMP_PKISTATUS_accepted 0
|
# define OSSL_CMP_PKISTATUS_request -3
|
||||||
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
# define OSSL_CMP_PKISTATUS_trans -2
|
||||||
# define OSSL_CMP_PKISTATUS_rejection 2
|
# define OSSL_CMP_PKISTATUS_unspecified -1
|
||||||
# define OSSL_CMP_PKISTATUS_waiting 3
|
# define OSSL_CMP_PKISTATUS_accepted 0
|
||||||
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
||||||
|
# define OSSL_CMP_PKISTATUS_rejection 2
|
||||||
|
# define OSSL_CMP_PKISTATUS_waiting 3
|
||||||
|
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
||||||
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
||||||
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
||||||
|
|
||||||
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
||||||
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
||||||
@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
|
|||||||
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
||||||
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
||||||
const unsigned char *ref, int len);
|
const unsigned char *ref, int len);
|
||||||
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
|
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
|
||||||
const int len);
|
const unsigned char *sec, int len);
|
||||||
/* CMP message header and extra certificates: */
|
/* CMP message header and extra certificates: */
|
||||||
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
||||||
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
||||||
|
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
|
||||||
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
||||||
STACK_OF(X509) *extraCertsOut);
|
STACK_OF(X509) *extraCertsOut);
|
||||||
/* certificate template: */
|
/* certificate template: */
|
||||||
@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
|
|||||||
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
|
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
||||||
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
||||||
const char *propq);
|
const char *propq);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/opensslv.h.in
|
* Generated by Makefile from include/openssl/opensslv.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
@ -29,7 +29,7 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_MAJOR 3
|
# define OPENSSL_VERSION_MAJOR 3
|
||||||
# define OPENSSL_VERSION_MINOR 0
|
# define OPENSSL_VERSION_MINOR 0
|
||||||
# define OPENSSL_VERSION_PATCH 7
|
# define OPENSSL_VERSION_PATCH 10
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Additional version information
|
* Additional version information
|
||||||
@ -74,21 +74,21 @@ extern "C" {
|
|||||||
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
||||||
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_STR "3.0.7"
|
# define OPENSSL_VERSION_STR "3.0.10"
|
||||||
# define OPENSSL_FULL_VERSION_STR "3.0.7"
|
# define OPENSSL_FULL_VERSION_STR "3.0.10"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 3: ADDITIONAL METADATA
|
* SECTION 3: ADDITIONAL METADATA
|
||||||
*
|
*
|
||||||
* These strings are defined separately to allow them to be parsable.
|
* These strings are defined separately to allow them to be parsable.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
|
# define OPENSSL_RELEASE_DATE "1 Aug 2023"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 4: BACKWARD COMPATIBILITY
|
* SECTION 4: BACKWARD COMPATIBILITY
|
||||||
*/
|
*/
|
||||||
|
|
||||||
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7 1 Nov 2022"
|
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10 1 Aug 2023"
|
||||||
|
|
||||||
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
||||||
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/x509v3.h.in
|
* Generated by Makefile from include/openssl/x509v3.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||||
* this file except in compliance with the License. You can obtain a copy
|
* this file except in compliance with the License. You can obtain a copy
|
||||||
@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
|
|||||||
OTHERNAME *otherName; /* otherName */
|
OTHERNAME *otherName; /* otherName */
|
||||||
ASN1_IA5STRING *rfc822Name;
|
ASN1_IA5STRING *rfc822Name;
|
||||||
ASN1_IA5STRING *dNSName;
|
ASN1_IA5STRING *dNSName;
|
||||||
ASN1_TYPE *x400Address;
|
ASN1_STRING *x400Address;
|
||||||
X509_NAME *directoryName;
|
X509_NAME *directoryName;
|
||||||
EDIPARTYNAME *ediPartyName;
|
EDIPARTYNAME *ediPartyName;
|
||||||
ASN1_IA5STRING *uniformResourceIdentifier;
|
ASN1_IA5STRING *uniformResourceIdentifier;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/cmp.h.in
|
* Generated by Makefile from include/openssl/cmp.h.in
|
||||||
*
|
*
|
||||||
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
* Copyright Nokia 2007-2019
|
* Copyright Nokia 2007-2019
|
||||||
* Copyright Siemens AG 2015-2019
|
* Copyright Siemens AG 2015-2019
|
||||||
*
|
*
|
||||||
@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
|
|||||||
* -- CertReqMsg
|
* -- CertReqMsg
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
# define OSSL_CMP_PKISTATUS_accepted 0
|
# define OSSL_CMP_PKISTATUS_request -3
|
||||||
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
# define OSSL_CMP_PKISTATUS_trans -2
|
||||||
# define OSSL_CMP_PKISTATUS_rejection 2
|
# define OSSL_CMP_PKISTATUS_unspecified -1
|
||||||
# define OSSL_CMP_PKISTATUS_waiting 3
|
# define OSSL_CMP_PKISTATUS_accepted 0
|
||||||
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
||||||
|
# define OSSL_CMP_PKISTATUS_rejection 2
|
||||||
|
# define OSSL_CMP_PKISTATUS_waiting 3
|
||||||
|
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
||||||
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
||||||
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
||||||
|
|
||||||
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
||||||
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
||||||
@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
|
|||||||
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
||||||
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
||||||
const unsigned char *ref, int len);
|
const unsigned char *ref, int len);
|
||||||
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
|
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
|
||||||
const int len);
|
const unsigned char *sec, int len);
|
||||||
/* CMP message header and extra certificates: */
|
/* CMP message header and extra certificates: */
|
||||||
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
||||||
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
||||||
|
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
|
||||||
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
||||||
STACK_OF(X509) *extraCertsOut);
|
STACK_OF(X509) *extraCertsOut);
|
||||||
/* certificate template: */
|
/* certificate template: */
|
||||||
@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
|
|||||||
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
|
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
||||||
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
||||||
const char *propq);
|
const char *propq);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/opensslv.h.in
|
* Generated by Makefile from include/openssl/opensslv.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
@ -29,7 +29,7 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_MAJOR 3
|
# define OPENSSL_VERSION_MAJOR 3
|
||||||
# define OPENSSL_VERSION_MINOR 0
|
# define OPENSSL_VERSION_MINOR 0
|
||||||
# define OPENSSL_VERSION_PATCH 7
|
# define OPENSSL_VERSION_PATCH 10
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Additional version information
|
* Additional version information
|
||||||
@ -74,21 +74,21 @@ extern "C" {
|
|||||||
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
||||||
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_STR "3.0.7"
|
# define OPENSSL_VERSION_STR "3.0.10"
|
||||||
# define OPENSSL_FULL_VERSION_STR "3.0.7"
|
# define OPENSSL_FULL_VERSION_STR "3.0.10"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 3: ADDITIONAL METADATA
|
* SECTION 3: ADDITIONAL METADATA
|
||||||
*
|
*
|
||||||
* These strings are defined separately to allow them to be parsable.
|
* These strings are defined separately to allow them to be parsable.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
|
# define OPENSSL_RELEASE_DATE "1 Aug 2023"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 4: BACKWARD COMPATIBILITY
|
* SECTION 4: BACKWARD COMPATIBILITY
|
||||||
*/
|
*/
|
||||||
|
|
||||||
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7 1 Nov 2022"
|
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10 1 Aug 2023"
|
||||||
|
|
||||||
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
||||||
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/x509v3.h.in
|
* Generated by Makefile from include/openssl/x509v3.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||||
* this file except in compliance with the License. You can obtain a copy
|
* this file except in compliance with the License. You can obtain a copy
|
||||||
@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
|
|||||||
OTHERNAME *otherName; /* otherName */
|
OTHERNAME *otherName; /* otherName */
|
||||||
ASN1_IA5STRING *rfc822Name;
|
ASN1_IA5STRING *rfc822Name;
|
||||||
ASN1_IA5STRING *dNSName;
|
ASN1_IA5STRING *dNSName;
|
||||||
ASN1_TYPE *x400Address;
|
ASN1_STRING *x400Address;
|
||||||
X509_NAME *directoryName;
|
X509_NAME *directoryName;
|
||||||
EDIPARTYNAME *ediPartyName;
|
EDIPARTYNAME *ediPartyName;
|
||||||
ASN1_IA5STRING *uniformResourceIdentifier;
|
ASN1_IA5STRING *uniformResourceIdentifier;
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/cmp.h.in
|
* Generated by Makefile from include/openssl/cmp.h.in
|
||||||
*
|
*
|
||||||
* Copyright 2007-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 2007-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
* Copyright Nokia 2007-2019
|
* Copyright Nokia 2007-2019
|
||||||
* Copyright Siemens AG 2015-2019
|
* Copyright Siemens AG 2015-2019
|
||||||
*
|
*
|
||||||
@ -193,13 +193,16 @@ typedef ASN1_BIT_STRING OSSL_CMP_PKIFAILUREINFO;
|
|||||||
* -- CertReqMsg
|
* -- CertReqMsg
|
||||||
* }
|
* }
|
||||||
*/
|
*/
|
||||||
# define OSSL_CMP_PKISTATUS_accepted 0
|
# define OSSL_CMP_PKISTATUS_request -3
|
||||||
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
# define OSSL_CMP_PKISTATUS_trans -2
|
||||||
# define OSSL_CMP_PKISTATUS_rejection 2
|
# define OSSL_CMP_PKISTATUS_unspecified -1
|
||||||
# define OSSL_CMP_PKISTATUS_waiting 3
|
# define OSSL_CMP_PKISTATUS_accepted 0
|
||||||
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
# define OSSL_CMP_PKISTATUS_grantedWithMods 1
|
||||||
|
# define OSSL_CMP_PKISTATUS_rejection 2
|
||||||
|
# define OSSL_CMP_PKISTATUS_waiting 3
|
||||||
|
# define OSSL_CMP_PKISTATUS_revocationWarning 4
|
||||||
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
# define OSSL_CMP_PKISTATUS_revocationNotification 5
|
||||||
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
# define OSSL_CMP_PKISTATUS_keyUpdateWarning 6
|
||||||
|
|
||||||
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
typedef ASN1_INTEGER OSSL_CMP_PKISTATUS;
|
||||||
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
DECLARE_ASN1_ITEM(OSSL_CMP_PKISTATUS)
|
||||||
@ -439,11 +442,12 @@ int OSSL_CMP_CTX_build_cert_chain(OSSL_CMP_CTX *ctx, X509_STORE *own_trusted,
|
|||||||
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
int OSSL_CMP_CTX_set1_pkey(OSSL_CMP_CTX *ctx, EVP_PKEY *pkey);
|
||||||
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_referenceValue(OSSL_CMP_CTX *ctx,
|
||||||
const unsigned char *ref, int len);
|
const unsigned char *ref, int len);
|
||||||
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx, const unsigned char *sec,
|
int OSSL_CMP_CTX_set1_secretValue(OSSL_CMP_CTX *ctx,
|
||||||
const int len);
|
const unsigned char *sec, int len);
|
||||||
/* CMP message header and extra certificates: */
|
/* CMP message header and extra certificates: */
|
||||||
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
int OSSL_CMP_CTX_set1_recipient(OSSL_CMP_CTX *ctx, const X509_NAME *name);
|
||||||
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
int OSSL_CMP_CTX_push0_geninfo_ITAV(OSSL_CMP_CTX *ctx, OSSL_CMP_ITAV *itav);
|
||||||
|
int OSSL_CMP_CTX_reset_geninfo_ITAVs(OSSL_CMP_CTX *ctx);
|
||||||
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
int OSSL_CMP_CTX_set1_extraCertsOut(OSSL_CMP_CTX *ctx,
|
||||||
STACK_OF(X509) *extraCertsOut);
|
STACK_OF(X509) *extraCertsOut);
|
||||||
/* certificate template: */
|
/* certificate template: */
|
||||||
@ -499,6 +503,7 @@ ASN1_OCTET_STRING *OSSL_CMP_HDR_get0_recipNonce(const OSSL_CMP_PKIHEADER *hdr);
|
|||||||
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
OSSL_CMP_PKIHEADER *OSSL_CMP_MSG_get0_header(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_get_bodytype(const OSSL_CMP_MSG *msg);
|
||||||
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
int OSSL_CMP_MSG_update_transactionID(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
|
int OSSL_CMP_MSG_update_recipNonce(OSSL_CMP_CTX *ctx, OSSL_CMP_MSG *msg);
|
||||||
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
OSSL_CRMF_MSG *OSSL_CMP_CTX_setup_CRM(OSSL_CMP_CTX *ctx, int for_KUR, int rid);
|
||||||
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
OSSL_CMP_MSG *OSSL_CMP_MSG_read(const char *file, OSSL_LIB_CTX *libctx,
|
||||||
const char *propq);
|
const char *propq);
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/opensslv.h.in
|
* Generated by Makefile from include/openssl/opensslv.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2020 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
@ -29,7 +29,7 @@ extern "C" {
|
|||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_MAJOR 3
|
# define OPENSSL_VERSION_MAJOR 3
|
||||||
# define OPENSSL_VERSION_MINOR 0
|
# define OPENSSL_VERSION_MINOR 0
|
||||||
# define OPENSSL_VERSION_PATCH 7
|
# define OPENSSL_VERSION_PATCH 10
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Additional version information
|
* Additional version information
|
||||||
@ -74,21 +74,21 @@ extern "C" {
|
|||||||
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
* longer variant with OPENSSL_VERSION_PRE_RELEASE_STR and
|
||||||
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
* OPENSSL_VERSION_BUILD_METADATA_STR appended.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_VERSION_STR "3.0.7"
|
# define OPENSSL_VERSION_STR "3.0.10"
|
||||||
# define OPENSSL_FULL_VERSION_STR "3.0.7"
|
# define OPENSSL_FULL_VERSION_STR "3.0.10"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 3: ADDITIONAL METADATA
|
* SECTION 3: ADDITIONAL METADATA
|
||||||
*
|
*
|
||||||
* These strings are defined separately to allow them to be parsable.
|
* These strings are defined separately to allow them to be parsable.
|
||||||
*/
|
*/
|
||||||
# define OPENSSL_RELEASE_DATE "1 Nov 2022"
|
# define OPENSSL_RELEASE_DATE "1 Aug 2023"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* SECTION 4: BACKWARD COMPATIBILITY
|
* SECTION 4: BACKWARD COMPATIBILITY
|
||||||
*/
|
*/
|
||||||
|
|
||||||
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.7 1 Nov 2022"
|
# define OPENSSL_VERSION_TEXT "OpenSSL 3.0.10 1 Aug 2023"
|
||||||
|
|
||||||
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
/* Synthesize OPENSSL_VERSION_NUMBER with the layout 0xMNN00PPSL */
|
||||||
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
# ifdef OPENSSL_VERSION_PRE_RELEASE
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
* WARNING: do not edit!
|
* WARNING: do not edit!
|
||||||
* Generated by Makefile from ../include/openssl/x509v3.h.in
|
* Generated by Makefile from include/openssl/x509v3.h.in
|
||||||
*
|
*
|
||||||
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1999-2023 The OpenSSL Project Authors. All Rights Reserved.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
||||||
* this file except in compliance with the License. You can obtain a copy
|
* this file except in compliance with the License. You can obtain a copy
|
||||||
@ -177,7 +177,7 @@ typedef struct GENERAL_NAME_st {
|
|||||||
OTHERNAME *otherName; /* otherName */
|
OTHERNAME *otherName; /* otherName */
|
||||||
ASN1_IA5STRING *rfc822Name;
|
ASN1_IA5STRING *rfc822Name;
|
||||||
ASN1_IA5STRING *dNSName;
|
ASN1_IA5STRING *dNSName;
|
||||||
ASN1_TYPE *x400Address;
|
ASN1_STRING *x400Address;
|
||||||
X509_NAME *directoryName;
|
X509_NAME *directoryName;
|
||||||
EDIPARTYNAME *ediPartyName;
|
EDIPARTYNAME *ediPartyName;
|
||||||
ASN1_IA5STRING *uniformResourceIdentifier;
|
ASN1_IA5STRING *uniformResourceIdentifier;
|
||||||
|
Loading…
Reference in New Issue
Block a user