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 private_key private_key
21 #ifndef PRIVATE_KEY_H_
22 #define PRIVATE_KEY_H_
24 typedef struct private_key_t private_key_t
;
26 #include <credentials/keys/public_key.h>
29 * Abstract private key interface.
31 struct private_key_t
{
36 * @return type of the key
38 key_type_t (*get_type
)(private_key_t
*this);
41 * Create a signature over a chunk of data.
43 * @param scheme signature scheme to use
44 * @param data chunk of data to sign
45 * @param signature where to allocate created signature
46 * @return TRUE if signature created
48 bool (*sign
)(private_key_t
*this, signature_scheme_t scheme
,
49 chunk_t data
, chunk_t
*signature
);
51 * Decrypt a chunk of data.
53 * @param crypto chunk containing encrypted data
54 * @param plain where to allocate decrypted data
55 * @return TRUE if data decrypted and plaintext allocated
57 bool (*decrypt
)(private_key_t
*this, chunk_t crypto
, chunk_t
*plain
);
60 * Get the strength of the key in bytes.
62 * @return strength of the key in bytes
64 size_t (*get_keysize
) (private_key_t
*this);
67 * Get the public part from the private key.
71 public_key_t
* (*get_public_key
)(private_key_t
*this);
74 * Check if two private keys are equal.
76 * @param other other private key
77 * @return TRUE, if equality
79 bool (*equals
) (private_key_t
*this, private_key_t
*other
);
82 * Check if a private key belongs to a public key.
84 * @param public public key
85 * @return TRUE, if keys belong together
87 bool (*belongs_to
) (private_key_t
*this, public_key_t
*public);
90 * Get the fingerprint of the key.
92 * @param type type of fingerprint, one of KEY_ID_*
93 * @param fp fingerprint, points to internal data
94 * @return TRUE if fingerprint type supported
96 bool (*get_fingerprint
)(private_key_t
*this, key_encoding_type_t type
,
100 * Check if a key has a given fingerprint of any kind.
102 * @param fp fingerprint to check
103 * @return TRUE if key has given fingerprint
105 bool (*has_fingerprint
)(private_key_t
*this, chunk_t fp
);
108 * Get the key in an encoded form as a chunk.
110 * @param type type of the encoding, one of KEY_PRIV_*
111 * @param encoding encoding of the key, allocated
112 * @return TRUE if encoding supported
114 bool (*get_encoding
)(private_key_t
*this, key_encoding_type_t type
,
118 * Increase the refcount to this private key.
120 * @return this, with an increased refcount
122 private_key_t
* (*get_ref
)(private_key_t
*this);
125 * Decrease refcount, destroy private_key if no more references.
127 void (*destroy
)(private_key_t
*this);
131 * Generic private key equals() implementation, usable by implementors.
133 * @param this first key to compare
134 * @param other second key to compare
135 * @return TRUE if this is equal to other
137 bool private_key_equals(private_key_t
*this, private_key_t
*other
);
140 * Generic private key belongs_to() implementation, usable by implementors.
142 * @param this first key to compare
143 * @param other second key to compare
144 * @return TRUE if this is equal to other
146 bool private_key_belongs_to(private_key_t
*private, public_key_t
*public);
149 * Generic private key has_fingerprint() implementation, usable by implementors.
151 * @param this key to check fingerprint
152 * @param fp fingerprint to check
153 * @return TRUE if key has given fingerprint
155 bool private_key_has_fingerprint(private_key_t
*this, chunk_t fingerprint
);
157 #endif /** PRIVATE_KEY_H_ @}*/