xref: /openssl/crypto/x509/v3_audit_id.c (revision 9216859f)
1 /*
2  * Copyright 2024 The OpenSSL Project Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License 2.0 (the "License").  You may not use
5  * this file except in compliance with the License.  You can obtain a copy
6  * in the file LICENSE in the source distribution or at
7  * https://www.openssl.org/source/license.html
8  */
9 
10 #include <openssl/x509v3.h>
11 #include "ext_dat.h"
12 
13 const X509V3_EXT_METHOD ossl_v3_audit_identity = {
14     NID_ac_auditIdentity, 0, ASN1_ITEM_ref(ASN1_OCTET_STRING),
15     0, 0, 0, 0,
16     (X509V3_EXT_I2S)i2s_ASN1_OCTET_STRING,
17     (X509V3_EXT_S2I)s2i_ASN1_OCTET_STRING,
18     0, 0, 0, 0,
19     NULL
20 };
21