VirtualBox

source: vbox/trunk/src/libs/openssl-1.1.1l/crypto/x509v3/v3_admis.h@ 91772

Last change on this file since 91772 was 91772, checked in by vboxsync, 3 years ago

openssl-1.1.1l: Applied and adjusted our OpenSSL changes to 1.1.1l. bugref:10126

File size: 1.1 KB
Line 
1/*
2 * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the OpenSSL license (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#ifndef OSSL_CRYPTO_X509V3_V3_ADMIS_H
11# define OSSL_CRYPTO_X509V3_V3_ADMIS_H
12
13struct NamingAuthority_st {
14 ASN1_OBJECT* namingAuthorityId;
15 ASN1_IA5STRING* namingAuthorityUrl;
16 ASN1_STRING* namingAuthorityText; /* i.e. DIRECTORYSTRING */
17};
18
19struct ProfessionInfo_st {
20 NAMING_AUTHORITY* namingAuthority;
21 STACK_OF(ASN1_STRING)* professionItems; /* i.e. DIRECTORYSTRING */
22 STACK_OF(ASN1_OBJECT)* professionOIDs;
23 ASN1_PRINTABLESTRING* registrationNumber;
24 ASN1_OCTET_STRING* addProfessionInfo;
25};
26
27struct Admissions_st {
28 GENERAL_NAME* admissionAuthority;
29 NAMING_AUTHORITY* namingAuthority;
30 STACK_OF(PROFESSION_INFO)* professionInfos;
31};
32
33struct AdmissionSyntax_st {
34 GENERAL_NAME* admissionAuthority;
35 STACK_OF(ADMISSIONS)* contentsOfAdmissions;
36};
37
38#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette