HS 2.0: Fix EST compilation with OpenSSL 1.1.0 and newer
SKM_sk_value() is not available anymore, so use DEFINE_STACK_OF() to get the appropriate accessor functions. Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
parent
b2f1e5458b
commit
a898113823
1 changed files with 13 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
||||||
#include <openssl/asn1t.h>
|
#include <openssl/asn1t.h>
|
||||||
#include <openssl/x509.h>
|
#include <openssl/x509.h>
|
||||||
#include <openssl/x509v3.h>
|
#include <openssl/x509v3.h>
|
||||||
|
#include <openssl/opensslv.h>
|
||||||
#ifdef OPENSSL_IS_BORINGSSL
|
#ifdef OPENSSL_IS_BORINGSSL
|
||||||
#include <openssl/buf.h>
|
#include <openssl/buf.h>
|
||||||
#endif /* OPENSSL_IS_BORINGSSL */
|
#endif /* OPENSSL_IS_BORINGSSL */
|
||||||
|
@ -219,6 +220,10 @@ typedef struct {
|
||||||
} d;
|
} d;
|
||||||
} AttrOrOID;
|
} AttrOrOID;
|
||||||
|
|
||||||
|
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(OPENSSL_IS_BORINGSSL)
|
||||||
|
DEFINE_STACK_OF(AttrOrOID)
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
int type;
|
int type;
|
||||||
STACK_OF(AttrOrOID) *attrs;
|
STACK_OF(AttrOrOID) *attrs;
|
||||||
|
@ -352,9 +357,17 @@ static void add_csrattrs(struct hs20_osu_client *ctx, CsrAttrs *csrattrs,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#else /* OPENSSL_IS_BORINGSSL */
|
#else /* OPENSSL_IS_BORINGSSL */
|
||||||
|
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(OPENSSL_IS_BORINGSSL)
|
||||||
|
num = sk_AttrOrOID_num(csrattrs->attrs);
|
||||||
|
#else
|
||||||
num = SKM_sk_num(AttrOrOID, csrattrs->attrs);
|
num = SKM_sk_num(AttrOrOID, csrattrs->attrs);
|
||||||
|
#endif
|
||||||
for (i = 0; i < num; i++) {
|
for (i = 0; i < num; i++) {
|
||||||
|
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(OPENSSL_IS_BORINGSSL)
|
||||||
|
AttrOrOID *ao = sk_AttrOrOID_value(csrattrs->attrs, i);
|
||||||
|
#else
|
||||||
AttrOrOID *ao = SKM_sk_value(AttrOrOID, csrattrs->attrs, i);
|
AttrOrOID *ao = SKM_sk_value(AttrOrOID, csrattrs->attrs, i);
|
||||||
|
#endif
|
||||||
switch (ao->type) {
|
switch (ao->type) {
|
||||||
case 0:
|
case 0:
|
||||||
add_csrattrs_oid(ctx, ao->d.oid, exts);
|
add_csrattrs_oid(ctx, ao->d.oid, exts);
|
||||||
|
|
Loading…
Reference in a new issue