OpenPACE
cv_cert.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2010-2012 Dominik Oepen and Frank Morgner
3 *
4 * This file is part of OpenPACE.
5 *
6 * OpenPACE is free software: you can redistribute it and/or modify it under
7 * the terms of the GNU General Public License as published by the Free
8 * Software Foundation, either version 3 of the License, or (at your option)
9 * any later version.
10 *
11 * OpenPACE is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14 * details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * OpenPACE. If not, see <http://www.gnu.org/licenses/>.
18 *
19 * Additional permission under GNU GPL version 3 section 7
20 *
21 * If you modify this Program, or any covered work, by linking or combining it
22 * with OpenSSL (or a modified version of that library), containing
23 * parts covered by the terms of OpenSSL's license, the licensors of
24 * this Program grant you additional permission to convey the resulting work.
25 * Corresponding Source for a non-source form of such a combination shall include
26 * the source code for the parts of OpenSSL used as well as that of the
27 * covered work.
28 *
29 * If you modify this Program, or any covered work, by linking or combining it
30 * with OpenSC (or a modified version of that library), containing
31 * parts covered by the terms of OpenSC's license, the licensors of
32 * this Program grant you additional permission to convey the resulting work.
33 * Corresponding Source for a non-source form of such a combination shall include
34 * the source code for the parts of OpenSC used as well as that of the
35 * covered work.
36 */
37
46#ifndef CVC_CERT_H_
47#define CVC_CERT_H_
48
49#ifdef __cplusplus
50extern "C" {
51#endif
52
53#include <eac/objects.h>
54#include <openssl/asn1.h>
55#include <openssl/asn1t.h>
56#include <openssl/bio.h>
57
58struct eac_ctx;
59
60#ifndef ASN1_APP_IMP
62#define ASN1_APP_IMP(stname, field, type, tag) ASN1_EX_TYPE(ASN1_TFLG_IMPTAG|ASN1_TFLG_APPLICATION, tag, stname, field, type)
63#endif
64#ifndef ASN1_APP_IMP_OPT
66#define ASN1_APP_IMP_OPT(stname, field, type, tag) ASN1_EX_TYPE(ASN1_TFLG_IMPTAG|ASN1_TFLG_APPLICATION|ASN1_TFLG_OPTIONAL, tag, stname, field, type)
67#endif
68#ifndef ASN1_APP_EXP_OPT
70#define ASN1_APP_EXP_OPT(stname, field, type, tag) ASN1_EX_TYPE(ASN1_TFLG_EXPTAG|ASN1_TFLG_APPLICATION|ASN1_TFLG_OPTIONAL, tag, stname, field, type)
71#endif
72#ifndef ASN1_APP_IMP_SEQUENCE_OF_OPT
73#define ASN1_APP_IMP_SEQUENCE_OF_OPT(stname, field, type, tag) \
74 ASN1_EX_TYPE(ASN1_TFLG_SEQUENCE_OF|ASN1_TFLG_IMPTAG|ASN1_TFLG_APPLICATION|ASN1_TFLG_OPTIONAL, tag, stname, field, type)
75#endif
76
88
89/* Number of bits and bytes of the relative authorization field in the CHAT.
90 * See TR-03110 pp. 85 */
91#define EAC_AT_CHAT_BYTES 5
92#define EAC_AT_CHAT_BITS 38
93#define EAC_IS_CHAT_BYTES 1
94#define EAC_IS_CHAT_BITS 6
95#define EAC_ST_CHAT_BYTES 1
96#define EAC_ST_CHAT_BITS 6
97
101typedef struct cvc_chat_seq_st {
104 ASN1_OBJECT *terminal_type;
106 ASN1_OCTET_STRING *relative_authorization;
110DECLARE_ASN1_FUNCTIONS(CVC_CHAT)
111
112
120typedef struct cvc_pubkey_st {
122 ASN1_OBJECT *oid;
124 ASN1_OCTET_STRING *cont1;
126 ASN1_OCTET_STRING *cont2;
128 ASN1_OCTET_STRING *cont3;
130 ASN1_OCTET_STRING *cont4;
132 ASN1_OCTET_STRING *cont5;
134 ASN1_OCTET_STRING *cont6;
136 ASN1_OCTET_STRING *cont7;
139DECLARE_ASN1_FUNCTIONS(CVC_PUBKEY)
140DECLARE_ASN1_ITEM(CVC_PUBKEY)
141
142
160DECLARE_ASN1_FUNCTIONS(CVC_DISCRETIONARY_DATA_TEMPLATE)
161DECLARE_ASN1_ITEM(CVC_DISCRETIONARY_DATA_TEMPLATE)
162
163
164
202DECLARE_ASN1_FUNCTIONS(CVC_CERT_BODY)
203DECLARE_ASN1_ITEM(CVC_CERT_BODY)
204
205
209typedef struct cvc_cert_seq_st {
213 ASN1_OCTET_STRING *signature;
217
218typedef struct cvc_commcert_seq_st {
221 STACK_OF(ASN1_OCTET_STRING) *values;
235 ASN1_OBJECT *descriptionType;
237 ASN1_UTF8STRING *issuerName;
240 ASN1_PRINTABLESTRING *issuerURL;
242 ASN1_UTF8STRING *subjectName;
245 ASN1_PRINTABLESTRING *subjectURL;
248 ASN1_OCTET_STRING *termsOfUsage;
250 ASN1_PRINTABLESTRING *redirectURL;
255DECLARE_ASN1_FUNCTIONS(CVC_CERTIFICATE_DESCRIPTION)
256
257
258
286DECLARE_ASN1_FUNCTIONS(CVC_CERT_REQUEST_BODY)
287
288
300DECLARE_ASN1_FUNCTIONS(CVC_CERT_REQUEST)
301
302
318DECLARE_ASN1_FUNCTIONS(CVC_CERT_AUTHENTICATION_REQUEST)
319
320
333CVC_CERT *CVC_d2i_CVC_CERT(CVC_CERT **cert, const unsigned char **in, long len);
334
345#if OPENSSL_VERSION_NUMBER >= 0x30000000L
346 const
347#endif
348 CVC_CERT *a, unsigned char **out);
349
357#define CVC_CERT_dup(x) ASN1_dup_of(CVC_CERT, i2d_CVC_CERT, CVC_d2i_CVC_CERT, x)
358
366#define CVC_PUBKEY_dup(x) ASN1_dup_of(CVC_PUBKEY, i2d_CVC_PUBKEY, d2i_CVC_PUBKEY, x)
367
375#define CVC_CHAT_dup(x) ASN1_dup_of(CVC_CHAT, i2d_CVC_CHAT, d2i_CVC_CHAT, x)
376
389
402
414EVP_PKEY *
415CVC_pubkey2pkey(const CVC_CERT *cert, BN_CTX *bn_ctx, EVP_PKEY *out);
416
418CVC_pkey2pubkey(int all_parameters, int protocol, EVP_PKEY *key,
419 BN_CTX *bn_ctx, CVC_PUBKEY *out);
420
421
422
439 const CVC_CERTIFICATE_DESCRIPTION *desc, int indent);
440
450int
451cvc_chat_print(BIO *bio, const CVC_CHAT *chat, int indent);
452
463int
464cvc_chat_print_authorizations(BIO *bio, const CVC_CHAT *chat, int indent);
465
475int
476CVC_print(BIO *bio, const CVC_CERT *cv, int indent);
477
488 const CVC_CERT_REQUEST *request, int indent);
489
500 const CVC_CERT_AUTHENTICATION_REQUEST *authentication, int indent);
501
511const CVC_CHAT *
513
527
535short
546char *
557char *
569char *
581char *
583
595int
596CVC_verify_signature(const CVC_CERT *cert, int protocol, EVP_PKEY *key);
597
606int
608
618int
620 const CVC_CERT_AUTHENTICATION_REQUEST *authentication);
621
633int
634CVC_check_description(const CVC_CERT *cv, const unsigned char *cert_desc_in,
635 const unsigned int cert_desc_in_len);
636
647 const unsigned char *cert_desc, size_t cert_desc_len);
648
649#ifdef __cplusplus
650}
651#endif
652#endif /* CVC_CERT_H_ */
cvc_terminal_role
Effective role of the certificate holder.
Definition cv_cert.h:78
@ CVC_CVCA
Country Verifying Certificate Authority.
Definition cv_cert.h:86
@ CVC_Terminal
Terminal (inspection system/authentication terminal/signature terminal)
Definition cv_cert.h:80
@ CVC_DocVer
Document Verifier (non-official/foreign)
Definition cv_cert.h:82
@ CVC_DV
Document Verifier (official domestic)
Definition cv_cert.h:84
CVC_DISCRETIONARY_DATA_TEMPLATE_SEQ CVC_DISCRETIONARY_DATA_TEMPLATE
Short name for CVC_CERT_BODY_SEQ.
Definition cv_cert.h:159
BUF_MEM * CVC_hash_description(const CVC_CERT *cv, const unsigned char *cert_desc, size_t cert_desc_len)
Create a hash over a certificate's description.
struct cvc_discretionary_data_template_seq_st CVC_DISCRETIONARY_DATA_TEMPLATE_SEQ
Discretionary data template, used to encode certificate extensions.
struct cvc_cert_request_seq_st CVC_CERT_REQUEST_SEQ
The actual certifcate request, consisting of the body and inner signature.
CVC_CHAT_SEQ CVC_CHAT
Short name for CVC_CHAT_SEQ.
Definition cv_cert.h:109
struct cvc_cert_seq_st CVC_CERT_SEQ
The actual certifcate, consisting of the body and a signature.
CVC_CERT_REQUEST_SEQ CVC_CERT_REQUEST
Short name for CVC_CERT_REQUEST_SEQ.
Definition cv_cert.h:299
char * CVC_get_car(const CVC_CERT *cert)
Return the CAR of a CV certificate as a string.
enum cvc_terminal_role CVC_get_role(const CVC_CHAT *chat)
Extract the terminal-type (terminal, DV, CVCA) from the CHAT.
int CVC_verify_request_signature(const CVC_CERT_REQUEST *request)
Verify the inner signature of a CV certificate request.
struct cvc_certificate_description_st CVC_CERTIFICATE_DESCRIPTION
This structure holds further information about a card verifiable certificate in human readable form.
struct cvc_cert_request_body_seq_st CVC_CERT_REQUEST_BODY_SEQ
The body of the CV certificate request (without signature)
char * CVC_get_chr(const CVC_CERT *cert)
Return the CAR of a CV certificate as a string.
struct cvc_pubkey_st CVC_PUBKEY_BODY
Public key data object which may contain domain parameters.
int CVC_check_description(const CVC_CERT *cv, const unsigned char *cert_desc_in, const unsigned int cert_desc_in_len)
Check whether or not the certificate contains the correct hash of the CV certificate description.
struct cvc_cert_authentication_request_seq_st CVC_CERT_AUTHENTICATION_REQUEST_SEQ
The authentication request, consisting of the certificate request, certificate authority reference an...
CVC_CERT_BODY_SEQ CVC_CERT_BODY
Short name for CVC_CERT_BODY_SEQ.
Definition cv_cert.h:201
int CVC_verify_authentication_request_signatures(struct eac_ctx *ctx, const CVC_CERT_AUTHENTICATION_REQUEST *authentication)
Verify the inner and outer signature of a CV certificate request.
short CVC_get_profile_identifier(const CVC_CERT *cert)
Return the profile identifier of a CV certificate as an integer.
struct cvc_cert_body_seq_st CVC_CERT_BODY_SEQ
The body of the CV certificate (without signature)
CVC_CERT_AUTHENTICATION_REQUEST_SEQ CVC_CERT_AUTHENTICATION_REQUEST
Short name for CVC_CERT_AUTHENTICATION_REQUEST_SEQ.
Definition cv_cert.h:317
const CVC_CHAT * cvc_get_chat(const CVC_CERT *cvc)
Get the CHAT contained in a CV certifcate.
CVC_CERT_REQUEST_BODY_SEQ CVC_CERT_REQUEST_BODY
Short name for CVC_CERT_REQUEST_BODY_SEQ.
Definition cv_cert.h:285
struct cvc_chat_seq_st CVC_CHAT_SEQ
Certificate Holder Authentication Template.
CVC_CERT_SEQ CVC_CERT
Short name for CVC_CERT_SEQ.
Definition cv_cert.h:216
char * CVC_get_expiration_date(const CVC_CERT *cert)
Convert the expiration date of a certificate to a string.
int CVC_verify_signature(const CVC_CERT *cert, int protocol, EVP_PKEY *key)
Verify the signature of a CV certificate using the public key of the certificate issuer.
char * CVC_get_effective_date(const CVC_CERT *cert)
Convert the effective date and expiration date, of a certificate to a string.
void CVC_CERT_free(CVC_CERT *a)
Free a CV certificate.
CVC_CERT * d2i_CVC_CERT_bio(BIO *bp, CVC_CERT **cvc)
Load a CV certificate from a BIO object.
int i2d_CVC_CERT(CVC_CERT *a, unsigned char **out)
Convert a CV certificate description to its ASN1 representation.
CVC_CERT * CVC_d2i_CVC_CERT(CVC_CERT **cert, const unsigned char **in, long len)
Convert ASN1 formatted CV certificate to the internal structure.
EVP_PKEY * CVC_pubkey2pkey(const CVC_CERT *cert, BN_CTX *bn_ctx, EVP_PKEY *out)
Extract the public key from a CV certificate. Since EC domain parameters are only included in CVCA ce...
CVC_CERT * CVC_CERT_new(void)
Allocate memory for a CV certificate.
int certificate_authentication_request_print(BIO *bio, const CVC_CERT_AUTHENTICATION_REQUEST *authentication, int indent)
Print CV certificate authentication request in human readable form.
int CVC_print(BIO *bio, const CVC_CERT *cv, int indent)
Print CV certificate in human readable form.
int certificate_description_print(BIO *bio, const CVC_CERTIFICATE_DESCRIPTION *desc, int indent)
Print CV certificate description in human readable form.
int cvc_chat_print(BIO *bio, const CVC_CHAT *chat, int indent)
Print CHAT in human readable form.
int certificate_request_print(BIO *bio, const CVC_CERT_REQUEST *request, int indent)
Print CV certificate request in human readable form.
int cvc_chat_print_authorizations(BIO *bio, const CVC_CHAT *chat, int indent)
Print the relative authorization contained in a CHAT in human readable form.
Definitions of object identifiers.
The authentication request, consisting of the certificate request, certificate authority reference an...
Definition cv_cert.h:306
CVC_CERT_REQUEST * request
certificate request
Definition cv_cert.h:308
ASN1_UTF8STRING * certificate_authority_reference
Reference to certificate authority that issued this authentication request (in Latin1)
Definition cv_cert.h:312
ASN1_OCTET_STRING * outer_signature
Signature calculated over the hash of the certificate request.
Definition cv_cert.h:314
The body of the CV certificate (without signature)
Definition cv_cert.h:168
ASN1_OCTET_STRING * certificate_effective_date
Date the certificate was issued (YYMMDD, BCD encoded)
Definition cv_cert.h:190
CVC_CHAT * chat
Certificate Holder Authorisation Template.
Definition cv_cert.h:186
ASN1_INTEGER * certificate_profile_identifier
Certificate Profile of this certificate (must be 0).
Definition cv_cert.h:172
ASN1_UTF8STRING * certificate_holder_reference
Reference to the holder of this certificate (in Latin1)
Definition cv_cert.h:184
CVC_PUBKEY * public_key
Public key associated with this certificate.
Definition cv_cert.h:180
ASN1_OCTET_STRING * certificate_expiration_date
Date until which the certicate is valid (YYMMDD, BCD encoded)
Definition cv_cert.h:194
STACK_OF(CVC_DISCRETIONARY_DATA_TEMPLATE) *certificate_extensions
Optional extensions.
ASN1_UTF8STRING * certificate_authority_reference
Reference to certificate authority that issued this certificate (in Latin1)
Definition cv_cert.h:176
The body of the CV certificate request (without signature)
Definition cv_cert.h:262
ASN1_UTF8STRING * certificate_authority_reference
Reference to certificate authority that issued this certificate request (in Latin1)
Definition cv_cert.h:270
ASN1_INTEGER * certificate_profile_identifier
Certificate Profile of this certificate request (must be 0).
Definition cv_cert.h:266
CVC_PUBKEY * public_key
Public key associated with this certificate request.
Definition cv_cert.h:274
ASN1_UTF8STRING * certificate_holder_reference
Reference to the holder of this certificate request (in Latin1)
Definition cv_cert.h:278
STACK_OF(CVC_DISCRETIONARY_DATA_TEMPLATE) *certificate_extensions
Optional extensions.
The actual certifcate request, consisting of the body and inner signature.
Definition cv_cert.h:292
CVC_CERT_REQUEST_BODY * body
Body of the certificate request.
Definition cv_cert.h:294
ASN1_OCTET_STRING * inner_signature
Signature calculated over the hash of the certificate request body.
Definition cv_cert.h:296
The actual certifcate, consisting of the body and a signature.
Definition cv_cert.h:209
ASN1_OCTET_STRING * signature
Signature calculated over the hash of the certificate body.
Definition cv_cert.h:213
CVC_CERT_BODY * body
Body of the certificate.
Definition cv_cert.h:211
This structure holds further information about a card verifiable certificate in human readable form.
Definition cv_cert.h:233
ASN1_OCTET_STRING * termsOfUsage
Terms of Usage of the Service holding the certificate. May be formatted as either plain text,...
Definition cv_cert.h:248
ASN1_OBJECT * descriptionType
Format of the description (Plain Text, PDF or HTML)
Definition cv_cert.h:235
ASN1_PRINTABLESTRING * redirectURL
Not used.
Definition cv_cert.h:250
ASN1_PRINTABLESTRING * subjectURL
Optional URL that points to informations about the holder of this certificate.
Definition cv_cert.h:245
ASN1_UTF8STRING * subjectName
Human readable name of the holder of this certificate.
Definition cv_cert.h:242
CVC_COMMCERT_SEQ * commCertificates
Contains hash values of admissible X.509 certificates of the remote terminal (optional)
Definition cv_cert.h:253
ASN1_PRINTABLESTRING * issuerURL
Optional URL that points to informations about the issuer of this certificate.
Definition cv_cert.h:240
ASN1_UTF8STRING * issuerName
Human readable name of the issuer of this certificate.
Definition cv_cert.h:237
Certificate Holder Authentication Template.
Definition cv_cert.h:101
ASN1_OCTET_STRING * relative_authorization
Access rights of the terminal to which this certificate belongs.
Definition cv_cert.h:106
ASN1_OBJECT * terminal_type
Role of terminal to which this certificate belongs (Inspection System, Authentication Terminal or Sig...
Definition cv_cert.h:104
STACK_OF(ASN1_OCTET_STRING) *values
Contains hash values of admissible X.509 certificates of the remote terminal (optional)
Discretionary data template, used to encode certificate extensions.
Definition cv_cert.h:148
ASN1_OCTET_STRING * discretionary_data3
holds descretionary data
Definition cv_cert.h:156
ASN1_OBJECT * type
OID which specifies the type of the extension.
Definition cv_cert.h:150
ASN1_OCTET_STRING * discretionary_data1
holds descretionary data
Definition cv_cert.h:152
ASN1_OCTET_STRING * discretionary_data2
holds descretionary data
Definition cv_cert.h:154
Public key data object which may contain domain parameters.
Definition cv_cert.h:120
ASN1_OCTET_STRING * cont6
Public point (EC)
Definition cv_cert.h:134
ASN1_OBJECT * oid
Object Identifier which specifies the exact protocol to be used during TA.
Definition cv_cert.h:122
ASN1_OCTET_STRING * cont2
Public exponent (RSA)/order of the Subgroup (DH)/first coefficient (EC)
Definition cv_cert.h:126
ASN1_OCTET_STRING * cont5
Public value (DH)/order of the base point (EC)
Definition cv_cert.h:132
ASN1_OCTET_STRING * cont3
Order of the subgroup (DH)/second coefficient (EC)
Definition cv_cert.h:128
ASN1_OCTET_STRING * cont7
Cofactor (EC)
Definition cv_cert.h:136
ASN1_OCTET_STRING * cont4
Generator (DH)/base point (EC)
Definition cv_cert.h:130
ASN1_OCTET_STRING * cont1
Composite modulus (RSA)/prime modulus (DH, EC)
Definition cv_cert.h:124
Context for the Extended Access Control protocol.
Definition eac.h:342