]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/x509v3/v3_admis.h
Update copyright year
[thirdparty/openssl.git] / crypto / x509v3 / v3_admis.h
CommitLineData
0c9d6818 1/*
6738bf14 2 * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
0c9d6818
F
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 HEADER_V3_ADMISSION_H
11# define HEADER_V3_ADMISSION_H
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
fa743582 17struct NamingAuthority_st {
0c9d6818
F
18 ASN1_OBJECT* namingAuthorityId;
19 ASN1_IA5STRING* namingAuthorityUrl;
20 ASN1_STRING* namingAuthorityText; /* i.e. DIRECTORYSTRING */
fa743582 21};
0c9d6818 22
fa743582 23struct ProfessionInfo_st {
0c9d6818
F
24 NAMING_AUTHORITY* namingAuthority;
25 STACK_OF(ASN1_STRING)* professionItems; /* i.e. DIRECTORYSTRING */
26 STACK_OF(ASN1_OBJECT)* professionOIDs;
27 ASN1_PRINTABLESTRING* registrationNumber;
28 ASN1_OCTET_STRING* addProfessionInfo;
fa743582 29};
0c9d6818 30
fa743582 31struct Admissions_st {
0c9d6818
F
32 GENERAL_NAME* admissionAuthority;
33 NAMING_AUTHORITY* namingAuthority;
34 STACK_OF(PROFESSION_INFO)* professionInfos;
fa743582 35};
0c9d6818 36
fa743582 37struct AdmissionSyntax_st {
0c9d6818
F
38 GENERAL_NAME* admissionAuthority;
39 STACK_OF(ADMISSIONS)* contentsOfAdmissions;
fa743582 40};
0c9d6818
F
41
42#ifdef __cplusplus
43}
44#endif
45#endif