2 * Copyright (C) 2007 Martin Willi
3 * Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup public_key public_key
24 typedef struct public_key_t public_key_t
;
25 typedef enum key_type_t key_type_t
;
26 typedef enum key_id_type_t key_id_type_t
;
27 typedef enum signature_scheme_t signature_scheme_t
;
30 #include <utils/identification.h>
33 * Type of a key pair, the used crypto system
36 /** key type wildcard */
38 /** RSA crypto system as in PKCS#1 */
40 /** ECDSA as in ANSI X9.62 */
48 * Enum names for key_type_t
50 extern enum_name_t
*key_type_names
;
53 * Signature scheme for signature creation
55 * EMSA-PKCS1 signatures are defined in PKCS#1 standard.
56 * A prepended ASN.1 encoded digestInfo field contains the
57 * OID of the used hash algorithm.
59 enum signature_scheme_t
{
60 /** Unknown signature scheme */
62 /** EMSA-PKCS1_v1.5 signature over digest without digestInfo */
63 SIGN_RSA_EMSA_PKCS1_NULL
,
64 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and MD5 */
65 SIGN_RSA_EMSA_PKCS1_MD5
,
66 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and SHA-1 */
67 SIGN_RSA_EMSA_PKCS1_SHA1
,
68 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and SHA-224 */
69 SIGN_RSA_EMSA_PKCS1_SHA224
,
70 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and SHA-256 */
71 SIGN_RSA_EMSA_PKCS1_SHA256
,
72 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and SHA-384 */
73 SIGN_RSA_EMSA_PKCS1_SHA384
,
74 /** EMSA-PKCS1_v1.5 signature as in PKCS#1 using RSA and SHA-512 */
75 SIGN_RSA_EMSA_PKCS1_SHA512
,
76 /** ECDSA with SHA-1 using DER encoding as in RFC 3279 */
77 SIGN_ECDSA_WITH_SHA1_DER
,
78 /** ECDSA with SHA-256 using DER encoding as in RFC 3279 */
79 SIGN_ECDSA_WITH_SHA256_DER
,
80 /** ECDSA with SHA-384 using DER encoding as in RFC 3279 */
81 SIGN_ECDSA_WITH_SHA384_DER
,
82 /** ECDSA with SHA-1 using DER encoding as in RFC 3279 */
83 SIGN_ECDSA_WITH_SHA512_DER
,
84 /** ECDSA over precomputed digest, signature as in RFC 4754 */
86 /** ECDSA on the P-256 curve with SHA-256 as in RFC 4754 */
88 /** ECDSA on the P-384 curve with SHA-384 as in RFC 4754 */
90 /** ECDSA on the P-521 curve with SHA-512 as in RFC 4754 */
95 * Enum names for signature_scheme_t
97 extern enum_name_t
*signature_scheme_names
;
100 * Abstract interface of a public key.
102 struct public_key_t
{
107 * @return type of the key
109 key_type_t (*get_type
)(public_key_t
*this);
112 * Verifies a signature against a chunk of data.
114 * @param scheme signature scheme to use for verification, may be default
115 * @param data data to check signature against
116 * @param signature signature to check
117 * @return TRUE if signature matches
119 bool (*verify
)(public_key_t
*this, signature_scheme_t scheme
,
120 chunk_t data
, chunk_t signature
);
123 * Encrypt a chunk of data.
125 * @param plain chunk containing plaintext data
126 * @param crypto where to allocate encrypted data
127 * @return TRUE if data successfully encrypted
129 bool (*encrypt
)(public_key_t
*this, chunk_t plain
, chunk_t
*crypto
);
132 * Check if two public keys are equal.
134 * @param other other public key
135 * @return TRUE, if equality
137 bool (*equals
)(public_key_t
*this, public_key_t
*other
);
140 * Get the strength of the key in bytes.
142 * @return strength of the key in bytes
144 size_t (*get_keysize
) (public_key_t
*this);
147 * Get the fingerprint of the key.
149 * @param type type of fingerprint, one of KEY_ID_*
150 * @param fp fingerprint, points to internal data
151 * @return TRUE if fingerprint type supported
153 bool (*get_fingerprint
)(public_key_t
*this, key_encoding_type_t type
,
157 * Get the key in an encoded form as a chunk.
159 * @param type type of the encoding, one of KEY_PRIV_*
160 * @param encoding encoding of the key, allocated
161 * @return TRUE if encoding supported
163 bool (*get_encoding
)(public_key_t
*this, key_encoding_type_t type
,
167 * Increase the refcount of the key.
169 * @return this with an increased refcount
171 public_key_t
* (*get_ref
)(public_key_t
*this);
174 * Destroy a public_key instance.
176 void (*destroy
)(public_key_t
*this);
180 * Generic public key equals() implementation, usable by implementors.
182 * @param this first key to compare
183 * @param other second key to compare
184 * @return TRUE if this is equal to other
186 bool public_key_equals(public_key_t
*this, public_key_t
*other
);
189 * Conversion of ASN.1 signature or hash OID to signature scheme.
191 * @param oid ASN.1 OID
192 * @return signature_scheme, SIGN_UNKNOWN if OID is unsupported
194 signature_scheme_t
signature_scheme_from_oid(int oid
);
196 #endif /** PUBLIC_KEY_H_ @}*/