mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-03 21:19:39 +00:00
Fix safestack issues in asn1.h
Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12781)
This commit is contained in:
parent
24c4ea958e
commit
b4780134df
3
.gitignore
vendored
3
.gitignore
vendored
@ -22,9 +22,10 @@
|
|||||||
# Auto generated headers
|
# Auto generated headers
|
||||||
/crypto/buildinf.h
|
/crypto/buildinf.h
|
||||||
/include/crypto/*_conf.h
|
/include/crypto/*_conf.h
|
||||||
|
/include/openssl/asn1.h
|
||||||
/include/openssl/configuration.h
|
/include/openssl/configuration.h
|
||||||
/include/openssl/opensslv.h
|
|
||||||
/include/openssl/fipskey.h
|
/include/openssl/fipskey.h
|
||||||
|
/include/openssl/opensslv.h
|
||||||
/include/openssl/safestack.h
|
/include/openssl/safestack.h
|
||||||
/include/openssl/ssl.h
|
/include/openssl/ssl.h
|
||||||
/include/openssl/x509.h
|
/include/openssl/x509.h
|
||||||
|
@ -18,8 +18,6 @@
|
|||||||
#include <openssl/pem.h>
|
#include <openssl/pem.h>
|
||||||
#include <openssl/asn1t.h>
|
#include <openssl/asn1t.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
typedef enum OPTION_choice {
|
typedef enum OPTION_choice {
|
||||||
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
|
OPT_ERR = -1, OPT_EOF = 0, OPT_HELP,
|
||||||
OPT_INFORM, OPT_IN, OPT_OUT, OPT_INDENT, OPT_NOOUT,
|
OPT_INFORM, OPT_IN, OPT_OUT, OPT_INDENT, OPT_NOOUT,
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#include <openssl/cmperr.h>
|
#include <openssl/cmperr.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
/* the context for the CMP mock server */
|
/* the context for the CMP mock server */
|
||||||
typedef struct
|
typedef struct
|
||||||
|
@ -28,8 +28,6 @@
|
|||||||
# include <openssl/dsa.h>
|
# include <openssl/dsa.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
#undef POSTFIX
|
#undef POSTFIX
|
||||||
#define POSTFIX ".srl"
|
#define POSTFIX ".srl"
|
||||||
#define DEF_DAYS 30
|
#define DEF_DAYS 30
|
||||||
|
@ -13,8 +13,10 @@ DEPEND[libssl]=libcrypto
|
|||||||
|
|
||||||
# Empty DEPEND "indices" means the dependencies are expected to be built
|
# Empty DEPEND "indices" means the dependencies are expected to be built
|
||||||
# unconditionally before anything else.
|
# unconditionally before anything else.
|
||||||
DEPEND[]=include/openssl/configuration.h include/openssl/opensslv.h \
|
DEPEND[]=include/openssl/asn1.h \
|
||||||
|
include/openssl/configuration.h \
|
||||||
include/openssl/fipskey.h \
|
include/openssl/fipskey.h \
|
||||||
|
include/openssl/opensslv.h \
|
||||||
include/openssl/safestack.h \
|
include/openssl/safestack.h \
|
||||||
include/openssl/ssl.h \
|
include/openssl/ssl.h \
|
||||||
include/openssl/x509.h \
|
include/openssl/x509.h \
|
||||||
@ -22,9 +24,10 @@ DEPEND[]=include/openssl/configuration.h include/openssl/opensslv.h \
|
|||||||
include/crypto/bn_conf.h include/crypto/dso_conf.h \
|
include/crypto/bn_conf.h include/crypto/dso_conf.h \
|
||||||
doc/man7/openssl_user_macros.pod
|
doc/man7/openssl_user_macros.pod
|
||||||
|
|
||||||
|
GENERATE[include/openssl/asn1.h]=include/openssl/asn1.h.in
|
||||||
GENERATE[include/openssl/configuration.h]=include/openssl/configuration.h.in
|
GENERATE[include/openssl/configuration.h]=include/openssl/configuration.h.in
|
||||||
GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
|
|
||||||
GENERATE[include/openssl/fipskey.h]=include/openssl/fipskey.h.in
|
GENERATE[include/openssl/fipskey.h]=include/openssl/fipskey.h.in
|
||||||
|
GENERATE[include/openssl/opensslv.h]=include/openssl/opensslv.h.in
|
||||||
GENERATE[include/openssl/safestack.h]=include/openssl/safestack.h.in
|
GENERATE[include/openssl/safestack.h]=include/openssl/safestack.h.in
|
||||||
GENERATE[include/openssl/ssl.h]=include/openssl/ssl.h.in
|
GENERATE[include/openssl/ssl.h]=include/openssl/ssl.h.in
|
||||||
GENERATE[include/openssl/x509.h]=include/openssl/x509.h.in
|
GENERATE[include/openssl/x509.h]=include/openssl/x509.h.in
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#include <openssl/asn1.h>
|
#include <openssl/asn1.h>
|
||||||
#include <openssl/objects.h>
|
#include <openssl/objects.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_STRING_TABLE)
|
|
||||||
|
|
||||||
static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
|
static STACK_OF(ASN1_STRING_TABLE) *stable = NULL;
|
||||||
static void st_free(ASN1_STRING_TABLE *tbl);
|
static void st_free(ASN1_STRING_TABLE *tbl);
|
||||||
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
|
static int sk_table_cmp(const ASN1_STRING_TABLE *const *a,
|
||||||
|
@ -23,7 +23,6 @@
|
|||||||
|
|
||||||
#define ASN1_GEN_STR(str,val) {str, sizeof(str) - 1, val}
|
#define ASN1_GEN_STR(str,val) {str, sizeof(str) - 1, val}
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_TYPE)
|
|
||||||
DEFINE_STACK_OF(CONF_VALUE)
|
DEFINE_STACK_OF(CONF_VALUE)
|
||||||
|
|
||||||
#define ASN1_FLAG_EXP_MAX 20
|
#define ASN1_FLAG_EXP_MAX 20
|
||||||
|
@ -13,8 +13,6 @@
|
|||||||
#include <openssl/asn1.h>
|
#include <openssl/asn1.h>
|
||||||
#include "asn1_local.h"
|
#include "asn1_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
|
static int asn1_get_length(const unsigned char **pp, int *inf, long *rl,
|
||||||
long max);
|
long max);
|
||||||
static void asn1_put_length(unsigned char **pp, int length);
|
static void asn1_put_length(unsigned char **pp, int length);
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
#include "asn1_local.h"
|
#include "asn1_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(BIO)
|
DEFINE_STACK_OF(BIO)
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Generalised MIME like utilities for streaming ASN1. Although many have a
|
* Generalised MIME like utilities for streaming ASN1. Although many have a
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#include "crypto/asn1.h"
|
#include "crypto/asn1.h"
|
||||||
#include "crypto/evp.h"
|
#include "crypto/evp.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_TYPE)
|
|
||||||
EVP_PKEY *d2i_PrivateKey_ex(int type, EVP_PKEY **a, const unsigned char **pp,
|
EVP_PKEY *d2i_PrivateKey_ex(int type, EVP_PKEY **a, const unsigned char **pp,
|
||||||
long length, OPENSSL_CTX *libctx, const char *propq)
|
long length, OPENSSL_CTX *libctx, const char *propq)
|
||||||
{
|
{
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
|
|
||||||
#include "openssl/cmp_util.h"
|
#include "openssl/cmp_util.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_CERTRESPONSE)
|
DEFINE_STACK_OF(OSSL_CMP_CERTRESPONSE)
|
||||||
DEFINE_STACK_OF(OSSL_CMP_PKISI)
|
DEFINE_STACK_OF(OSSL_CMP_PKISI)
|
||||||
DEFINE_STACK_OF(OSSL_CRMF_CERTID)
|
DEFINE_STACK_OF(OSSL_CRMF_CERTID)
|
||||||
|
@ -21,7 +21,6 @@
|
|||||||
#include <openssl/crmf.h>
|
#include <openssl/crmf.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -20,7 +20,6 @@
|
|||||||
#include <openssl/cmp.h>
|
#include <openssl/cmp.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
||||||
|
|
||||||
int ossl_cmp_hdr_set_pvno(OSSL_CMP_PKIHEADER *hdr, int pvno)
|
int ossl_cmp_hdr_set_pvno(OSSL_CMP_PKIHEADER *hdr, int pvno)
|
||||||
|
@ -27,7 +27,6 @@ DEFINE_STACK_OF(OSSL_CMP_PKISI)
|
|||||||
DEFINE_STACK_OF(OSSL_CRMF_MSG)
|
DEFINE_STACK_OF(OSSL_CRMF_MSG)
|
||||||
DEFINE_STACK_OF(OSSL_CMP_CERTRESPONSE)
|
DEFINE_STACK_OF(OSSL_CMP_CERTRESPONSE)
|
||||||
DEFINE_STACK_OF(OSSL_CRMF_CERTID)
|
DEFINE_STACK_OF(OSSL_CRMF_CERTID)
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
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)
|
||||||
{
|
{
|
||||||
|
@ -26,8 +26,6 @@
|
|||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include <openssl/asn1err.h> /* for ASN1_R_TOO_SMALL and ASN1_R_TOO_LARGE */
|
#include <openssl/asn1err.h> /* for ASN1_R_TOO_SMALL and ASN1_R_TOO_LARGE */
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
/* CMP functions related to PKIStatus */
|
/* CMP functions related to PKIStatus */
|
||||||
|
|
||||||
int ossl_cmp_pkisi_get_status(const OSSL_CMP_PKISI *si)
|
int ossl_cmp_pkisi_get_status(const OSSL_CMP_PKISI *si)
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(X509_OBJECT)
|
DEFINE_STACK_OF(X509_OBJECT)
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* use trace API for CMP-specific logging, prefixed by "CMP " and severity
|
* use trace API for CMP-specific logging, prefixed by "CMP " and severity
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
DEFINE_STACK_OF(CMS_RevocationInfoChoice)
|
DEFINE_STACK_OF(CMS_RevocationInfoChoice)
|
||||||
DEFINE_STACK_OF(CMS_SignerInfo)
|
DEFINE_STACK_OF(CMS_SignerInfo)
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
|
|
||||||
/* CMS SignedData Utilities */
|
/* CMS SignedData Utilities */
|
||||||
|
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
#include <openssl/rand.h>
|
#include <openssl/rand.h>
|
||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
/* Standard wrapper functions for extensions */
|
/* Standard wrapper functions for extensions */
|
||||||
|
|
||||||
/* OCSP request extensions */
|
/* OCSP request extensions */
|
||||||
|
@ -17,8 +17,6 @@
|
|||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
|
|
||||||
int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si,
|
int PKCS7_add_attrib_smimecap(PKCS7_SIGNER_INFO *si,
|
||||||
STACK_OF(X509_ALGOR) *cap)
|
STACK_OF(X509_ALGOR) *cap)
|
||||||
{
|
{
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#include <openssl/err.h>
|
#include <openssl/err.h>
|
||||||
#include "pk7_local.h"
|
#include "pk7_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
DEFINE_STACK_OF(PKCS7_RECIP_INFO)
|
DEFINE_STACK_OF(PKCS7_RECIP_INFO)
|
||||||
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
||||||
|
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#include "crypto/x509.h" /* for sk_X509_add1_cert() */
|
#include "crypto/x509.h" /* for sk_X509_add1_cert() */
|
||||||
#include "pk7_local.h"
|
#include "pk7_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
DEFINE_STACK_OF(PKCS7_RECIP_INFO)
|
DEFINE_STACK_OF(PKCS7_RECIP_INFO)
|
||||||
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
||||||
|
|
||||||
|
@ -17,7 +17,6 @@
|
|||||||
|
|
||||||
#define BUFFERSIZE 4096
|
#define BUFFERSIZE 4096
|
||||||
|
|
||||||
DEFINE_STACK_OF(X509_ALGOR)
|
|
||||||
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
||||||
|
|
||||||
static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
|
static int pkcs7_copy_existing_digest(PKCS7 *p7, PKCS7_SIGNER_INFO *si);
|
||||||
|
@ -15,7 +15,6 @@
|
|||||||
#include <openssl/ts.h>
|
#include <openssl/ts.h>
|
||||||
#include "ts_local.h"
|
#include "ts_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(CONF_VALUE)
|
DEFINE_STACK_OF(CONF_VALUE)
|
||||||
|
|
||||||
struct status_map_st {
|
struct status_map_st {
|
||||||
|
@ -17,8 +17,6 @@
|
|||||||
#include "ts_local.h"
|
#include "ts_local.h"
|
||||||
#include "crypto/ess.h"
|
#include "crypto/ess.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
DEFINE_STACK_OF_CONST(EVP_MD)
|
DEFINE_STACK_OF_CONST(EVP_MD)
|
||||||
|
|
||||||
static ASN1_INTEGER *def_serial_cb(struct TS_resp_ctx *, void *);
|
static ASN1_INTEGER *def_serial_cb(struct TS_resp_ctx *, void *);
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
DEFINE_STACK_OF(PKCS7_SIGNER_INFO)
|
||||||
DEFINE_STACK_OF(ESS_CERT_ID)
|
DEFINE_STACK_OF(ESS_CERT_ID)
|
||||||
DEFINE_STACK_OF(ESS_CERT_ID_V2)
|
DEFINE_STACK_OF(ESS_CERT_ID_V2)
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
|
static int ts_verify_cert(X509_STORE *store, STACK_OF(X509) *untrusted,
|
||||||
X509 *signer, STACK_OF(X509) **chain);
|
X509 *signer, STACK_OF(X509) **chain);
|
||||||
|
@ -13,8 +13,6 @@
|
|||||||
|
|
||||||
#include "pcy_local.h"
|
#include "pcy_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
/* Policy Node routines */
|
/* Policy Node routines */
|
||||||
|
|
||||||
void policy_data_free(X509_POLICY_DATA *data)
|
void policy_data_free(X509_POLICY_DATA *data)
|
||||||
|
@ -14,8 +14,6 @@
|
|||||||
|
|
||||||
#include "pcy_local.h"
|
#include "pcy_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set policy mapping entries in cache. Note: this modifies the passed
|
* Set policy mapping entries in cache. Note: this modifies the passed
|
||||||
* POLICY_MAPPINGS structure
|
* POLICY_MAPPINGS structure
|
||||||
|
@ -14,8 +14,6 @@
|
|||||||
|
|
||||||
#include "pcy_local.h"
|
#include "pcy_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
static int node_cmp(const X509_POLICY_NODE *const *a,
|
static int node_cmp(const X509_POLICY_NODE *const *a,
|
||||||
const X509_POLICY_NODE *const *b)
|
const X509_POLICY_NODE *const *b)
|
||||||
{
|
{
|
||||||
|
@ -14,8 +14,6 @@
|
|||||||
|
|
||||||
#include "pcy_local.h"
|
#include "pcy_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
static void expected_print(BIO *channel,
|
static void expected_print(BIO *channel,
|
||||||
X509_POLICY_LEVEL *lev, X509_POLICY_NODE *node,
|
X509_POLICY_LEVEL *lev, X509_POLICY_NODE *node,
|
||||||
int indent)
|
int indent)
|
||||||
|
@ -17,8 +17,6 @@
|
|||||||
#include "crypto/asn1.h"
|
#include "crypto/asn1.h"
|
||||||
#include "crypto/x509.h"
|
#include "crypto/x509.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
#ifndef OPENSSL_NO_STDIO
|
#ifndef OPENSSL_NO_STDIO
|
||||||
int X509_print_fp(FILE *fp, X509 *x)
|
int X509_print_fp(FILE *fp, X509 *x)
|
||||||
{
|
{
|
||||||
|
@ -20,8 +20,6 @@
|
|||||||
#include "v3_admis.h"
|
#include "v3_admis.h"
|
||||||
#include "ext_dat.h"
|
#include "ext_dat.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
ASN1_SEQUENCE(NAMING_AUTHORITY) = {
|
ASN1_SEQUENCE(NAMING_AUTHORITY) = {
|
||||||
ASN1_OPT(NAMING_AUTHORITY, namingAuthorityId, ASN1_OBJECT),
|
ASN1_OPT(NAMING_AUTHORITY, namingAuthorityId, ASN1_OBJECT),
|
||||||
ASN1_OPT(NAMING_AUTHORITY, namingAuthorityUrl, ASN1_IA5STRING),
|
ASN1_OPT(NAMING_AUTHORITY, namingAuthorityUrl, ASN1_IA5STRING),
|
||||||
|
@ -19,7 +19,6 @@
|
|||||||
#include "ext_dat.h"
|
#include "ext_dat.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(CONF_VALUE)
|
DEFINE_STACK_OF(CONF_VALUE)
|
||||||
DEFINE_STACK_OF(ASN1_INTEGER)
|
|
||||||
|
|
||||||
/* Certificate policies extension support: this one is a bit complex... */
|
/* Certificate policies extension support: this one is a bit complex... */
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@
|
|||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
#include "ext_dat.h"
|
#include "ext_dat.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
DEFINE_STACK_OF(CONF_VALUE)
|
DEFINE_STACK_OF(CONF_VALUE)
|
||||||
|
|
||||||
static void *v2i_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method,
|
static void *v2i_EXTENDED_KEY_USAGE(const X509V3_EXT_METHOD *method,
|
||||||
|
@ -16,8 +16,6 @@
|
|||||||
#include "internal/tsan_assist.h"
|
#include "internal/tsan_assist.h"
|
||||||
#include "x509_local.h"
|
#include "x509_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
static int check_ssl_ca(const X509 *x);
|
static int check_ssl_ca(const X509 *x);
|
||||||
static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
|
static int check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x,
|
||||||
int ca);
|
int ca);
|
||||||
|
@ -16,7 +16,6 @@
|
|||||||
#include "ext_dat.h"
|
#include "ext_dat.h"
|
||||||
#include "x509_local.h"
|
#include "x509_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_INTEGER)
|
|
||||||
DEFINE_STACK_OF(CONF_VALUE)
|
DEFINE_STACK_OF(CONF_VALUE)
|
||||||
|
|
||||||
static STACK_OF(CONF_VALUE) *i2v_TLS_FEATURE(const X509V3_EXT_METHOD *method,
|
static STACK_OF(CONF_VALUE) *i2v_TLS_FEATURE(const X509V3_EXT_METHOD *method,
|
||||||
|
@ -17,8 +17,6 @@
|
|||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
#include "x509_local.h"
|
#include "x509_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_TYPE)
|
|
||||||
|
|
||||||
int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x)
|
int X509at_get_attr_count(const STACK_OF(X509_ATTRIBUTE) *x)
|
||||||
{
|
{
|
||||||
return sk_X509_ATTRIBUTE_num(x);
|
return sk_X509_ATTRIBUTE_num(x);
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
#include "crypto/x509.h"
|
#include "crypto/x509.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b);
|
static int tr_cmp(const X509_TRUST *const *a, const X509_TRUST *const *b);
|
||||||
static void trtable_free(X509_TRUST *p);
|
static void trtable_free(X509_TRUST *p);
|
||||||
|
|
||||||
|
@ -18,7 +18,6 @@
|
|||||||
|
|
||||||
#include "x509_local.h"
|
#include "x509_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
DEFINE_STACK_OF(X509_VERIFY_PARAM)
|
DEFINE_STACK_OF(X509_VERIFY_PARAM)
|
||||||
|
|
||||||
/* X509_VERIFY_PARAM functions */
|
/* X509_VERIFY_PARAM functions */
|
||||||
|
@ -14,8 +14,6 @@
|
|||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include "x509_local.h"
|
#include "x509_local.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_TYPE)
|
|
||||||
|
|
||||||
/*-
|
/*-
|
||||||
* X509_ATTRIBUTE: this has the following form:
|
* X509_ATTRIBUTE: this has the following form:
|
||||||
*
|
*
|
||||||
|
@ -14,8 +14,6 @@
|
|||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include "crypto/x509.h"
|
#include "crypto/x509.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_OBJECT)
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* X509_CERT_AUX routines. These are used to encode additional user
|
* X509_CERT_AUX routines. These are used to encode additional user
|
||||||
* modifiable data about a certificate. This data is appended to the X509
|
* modifiable data about a certificate. This data is appended to the X509
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
|
* {- join("\n * ", @autowarntext) -}
|
||||||
|
*
|
||||||
* Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
|
* Copyright 1995-2020 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
|
||||||
@ -7,6 +9,10 @@
|
|||||||
* https://www.openssl.org/source/license.html
|
* https://www.openssl.org/source/license.html
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
{-
|
||||||
|
use OpenSSL::stackhash qw(generate_stack_macros);
|
||||||
|
-}
|
||||||
|
|
||||||
#ifndef OPENSSL_ASN1_H
|
#ifndef OPENSSL_ASN1_H
|
||||||
# define OPENSSL_ASN1_H
|
# define OPENSSL_ASN1_H
|
||||||
# pragma once
|
# pragma once
|
||||||
@ -121,7 +127,10 @@ extern "C" {
|
|||||||
# define SMIME_STREAM 0x1000
|
# define SMIME_STREAM 0x1000
|
||||||
|
|
||||||
/* Stacks for types not otherwise defined in this header */
|
/* Stacks for types not otherwise defined in this header */
|
||||||
DEFINE_OR_DECLARE_STACK_OF(X509_ALGOR)
|
{-
|
||||||
|
generate_stack_macros("X509_ALGOR");
|
||||||
|
-}
|
||||||
|
|
||||||
|
|
||||||
# define ASN1_STRING_FLAG_BITS_LEFT 0x08/* Set if 0x07 has bits left value */
|
# define ASN1_STRING_FLAG_BITS_LEFT 0x08/* Set if 0x07 has bits left value */
|
||||||
/*
|
/*
|
||||||
@ -196,7 +205,9 @@ struct asn1_string_table_st {
|
|||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_STRING_TABLE)
|
{-
|
||||||
|
generate_stack_macros("ASN1_STRING_TABLE");
|
||||||
|
-}
|
||||||
|
|
||||||
/* size limits: this stuff is taken straight from RFC2459 */
|
/* size limits: this stuff is taken straight from RFC2459 */
|
||||||
|
|
||||||
@ -452,7 +463,9 @@ struct asn1_type_st {
|
|||||||
} value;
|
} value;
|
||||||
};
|
};
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_TYPE)
|
{-
|
||||||
|
generate_stack_macros("ASN1_TYPE");
|
||||||
|
-}
|
||||||
|
|
||||||
typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
|
typedef STACK_OF(ASN1_TYPE) ASN1_SEQUENCE_ANY;
|
||||||
|
|
||||||
@ -506,7 +519,9 @@ int ASN1_TYPE_cmp(const ASN1_TYPE *a, const ASN1_TYPE *b);
|
|||||||
ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s, ASN1_TYPE **t);
|
ASN1_TYPE *ASN1_TYPE_pack_sequence(const ASN1_ITEM *it, void *s, ASN1_TYPE **t);
|
||||||
void *ASN1_TYPE_unpack_sequence(const ASN1_ITEM *it, const ASN1_TYPE *t);
|
void *ASN1_TYPE_unpack_sequence(const ASN1_ITEM *it, const ASN1_TYPE *t);
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_OBJECT)
|
{-
|
||||||
|
generate_stack_macros("ASN1_OBJECT");
|
||||||
|
-}
|
||||||
|
|
||||||
DECLARE_ASN1_FUNCTIONS(ASN1_OBJECT)
|
DECLARE_ASN1_FUNCTIONS(ASN1_OBJECT)
|
||||||
|
|
||||||
@ -542,7 +557,10 @@ int ASN1_BIT_STRING_num_asc(const char *name, BIT_STRING_BITNAME *tbl);
|
|||||||
int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value,
|
int ASN1_BIT_STRING_set_asc(ASN1_BIT_STRING *bs, const char *name, int value,
|
||||||
BIT_STRING_BITNAME *tbl);
|
BIT_STRING_BITNAME *tbl);
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_INTEGER)
|
{-
|
||||||
|
generate_stack_macros("ASN1_INTEGER");
|
||||||
|
-}
|
||||||
|
|
||||||
|
|
||||||
DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
|
DECLARE_ASN1_FUNCTIONS(ASN1_INTEGER)
|
||||||
ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
|
ASN1_INTEGER *d2i_ASN1_UINTEGER(ASN1_INTEGER **a, const unsigned char **pp,
|
||||||
@ -577,7 +595,9 @@ int ASN1_OCTET_STRING_cmp(const ASN1_OCTET_STRING *a,
|
|||||||
int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data,
|
int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data,
|
||||||
int len);
|
int len);
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_UTF8STRING)
|
{-
|
||||||
|
generate_stack_macros("ASN1_UTF8STRING");
|
||||||
|
-}
|
||||||
|
|
||||||
DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
|
DECLARE_ASN1_FUNCTIONS(ASN1_VISIBLESTRING)
|
||||||
DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
|
DECLARE_ASN1_FUNCTIONS(ASN1_UNIVERSALSTRING)
|
||||||
@ -588,7 +608,9 @@ DECLARE_ASN1_FUNCTIONS(ASN1_BMPSTRING)
|
|||||||
int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
|
int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
|
||||||
int UTF8_putc(unsigned char *str, int len, unsigned long value);
|
int UTF8_putc(unsigned char *str, int len, unsigned long value);
|
||||||
|
|
||||||
DEFINE_OR_DECLARE_STACK_OF(ASN1_GENERALSTRING)
|
{-
|
||||||
|
generate_stack_macros("ASN1_GENERALSTRING");
|
||||||
|
-}
|
||||||
|
|
||||||
DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
|
DECLARE_ASN1_FUNCTIONS_name(ASN1_STRING, ASN1_PRINTABLE)
|
||||||
|
|
@ -13,7 +13,6 @@
|
|||||||
|
|
||||||
#include <openssl/x509_vfy.h>
|
#include <openssl/x509_vfy.h>
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
||||||
|
|
||||||
typedef struct test_fixture {
|
typedef struct test_fixture {
|
||||||
|
@ -12,7 +12,6 @@
|
|||||||
#include "cmp_testlib.h"
|
#include "cmp_testlib.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
DEFINE_STACK_OF(OSSL_CMP_ITAV)
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
static unsigned char rand_data[OSSL_CMP_TRANSACTIONID_LENGTH];
|
static unsigned char rand_data[OSSL_CMP_TRANSACTIONID_LENGTH];
|
||||||
|
|
||||||
|
@ -11,8 +11,6 @@
|
|||||||
|
|
||||||
#include "cmp_testlib.h"
|
#include "cmp_testlib.h"
|
||||||
|
|
||||||
DEFINE_STACK_OF(ASN1_UTF8STRING)
|
|
||||||
|
|
||||||
typedef struct test_fixture {
|
typedef struct test_fixture {
|
||||||
const char *test_case_name;
|
const char *test_case_name;
|
||||||
int pkistatus;
|
int pkistatus;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user