mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
9216859f7b
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24754)
21 lines
626 B
C
21 lines
626 B
C
/*
|
|
* Copyright 2024 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* 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
|
|
* in the file LICENSE in the source distribution or at
|
|
* https://www.openssl.org/source/license.html
|
|
*/
|
|
|
|
#include <openssl/x509v3.h>
|
|
#include "ext_dat.h"
|
|
|
|
const X509V3_EXT_METHOD ossl_v3_audit_identity = {
|
|
NID_ac_auditIdentity, 0, ASN1_ITEM_ref(ASN1_OCTET_STRING),
|
|
0, 0, 0, 0,
|
|
(X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING,
|
|
(X509V3_EXT_S2I)s2i_ASN1_OCTET_STRING,
|
|
0, 0, 0, 0,
|
|
NULL
|
|
};
|