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 |
|
---|
13 | struct NamingAuthority_st {
|
---|
14 | ASN1_OBJECT* namingAuthorityId;
|
---|
15 | ASN1_IA5STRING* namingAuthorityUrl;
|
---|
16 | ASN1_STRING* namingAuthorityText; /* i.e. DIRECTORYSTRING */
|
---|
17 | };
|
---|
18 |
|
---|
19 | struct 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 |
|
---|
27 | struct Admissions_st {
|
---|
28 | GENERAL_NAME* admissionAuthority;
|
---|
29 | NAMING_AUTHORITY* namingAuthority;
|
---|
30 | STACK_OF(PROFESSION_INFO)* professionInfos;
|
---|
31 | };
|
---|
32 |
|
---|
33 | struct 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.