2 * Copyright (C) 2005-2008 Martin Willi
3 * Copyright (C) 2005 Jan Hutter
4 * Hochschule fuer Technik Rapperswil
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #include "gmp_rsa_public_key.h"
27 #include <asn1/asn1.h>
28 #include <asn1/asn1_parser.h>
30 #include <crypto/hashers/hasher.h>
33 typedef struct private_gmp_rsa_public_key_t private_gmp_rsa_public_key_t
;
36 * Private data structure with signing context.
38 struct private_gmp_rsa_public_key_t
{
40 * Public interface for this signer.
42 gmp_rsa_public_key_t
public;
60 * Keyid formed as a SHA-1 hash of a publicKeyInfo object
62 identification_t
*keyid_info
;
65 * Keyid formed as a SHA-1 hash of a publicKey object
67 identification_t
*keyid
;
76 * Shared functions defined in gmp_rsa_private_key.c
78 extern chunk_t
gmp_mpz_to_chunk(const mpz_t value
);
79 extern chunk_t
gmp_mpz_to_asn1(const mpz_t value
);
82 * RSAEP algorithm specified in PKCS#1.
84 static chunk_t
rsaep(private_gmp_rsa_public_key_t
*this, chunk_t data
)
92 mpz_import(m
, data
.len
, 1, 1, 1, 0, data
.ptr
);
94 mpz_powm(c
, m
, this->e
, this->n
);
96 encrypted
.len
= this->k
;
97 encrypted
.ptr
= mpz_export(NULL
, NULL
, 1, encrypted
.len
, 1, 0, c
);
98 if (encrypted
.ptr
== NULL
)
110 * RSAVP1 algorithm specified in PKCS#1.
112 static chunk_t
rsavp1(private_gmp_rsa_public_key_t
*this, chunk_t data
)
114 return rsaep(this, data
);
118 * ASN.1 definition of digestInfo
120 static const asn1Object_t digestInfoObjects
[] = {
121 { 0, "digestInfo", ASN1_SEQUENCE
, ASN1_OBJ
}, /* 0 */
122 { 1, "digestAlgorithm", ASN1_EOC
, ASN1_RAW
}, /* 1 */
123 { 1, "digest", ASN1_OCTET_STRING
, ASN1_BODY
}, /* 2 */
124 { 0, "exit", ASN1_EOC
, ASN1_EXIT
}
126 #define DIGEST_INFO 0
127 #define DIGEST_INFO_ALGORITHM 1
128 #define DIGEST_INFO_DIGEST 2
131 * Verification of an EMPSA PKCS1 signature described in PKCS#1
133 static bool verify_emsa_pkcs1_signature(private_gmp_rsa_public_key_t
*this,
134 hash_algorithm_t algorithm
,
135 chunk_t data
, chunk_t signature
)
138 bool success
= FALSE
;
140 /* remove any preceding 0-bytes from signature */
141 while (signature
.len
&& *(signature
.ptr
) == 0x00)
147 if (signature
.len
> this->k
)
152 /* unpack signature */
153 em_ori
= em
= rsavp1(this, signature
);
155 /* result should look like this:
156 * EM = 0x00 || 0x01 || PS || 0x00 || T.
157 * PS = 0xFF padding, with length to fill em
161 /* check magic bytes */
162 if (*(em
.ptr
) != 0x00 || *(em
.ptr
+1) != 0x01)
169 /* find magic 0x00 */
174 /* found magic byte, stop */
179 else if (*em
.ptr
!= 0xFF)
181 /* bad padding, decryption failed ?!*/
190 /* no digestInfo found */
194 if (algorithm
== HASH_UNKNOWN
)
195 { /* IKEv1 signatures without digestInfo */
196 if (em
.len
!= data
.len
)
198 DBG1("hash size in signature is %u bytes instead of %u bytes",
202 success
= memeq(em
.ptr
, data
.ptr
, data
.len
);
205 { /* IKEv2 and X.509 certificate signatures */
206 asn1_parser_t
*parser
;
209 hash_algorithm_t hash_algorithm
= HASH_UNKNOWN
;
211 DBG2("signature verification:");
212 parser
= asn1_parser_create(digestInfoObjects
, em
);
214 while (parser
->iterate(parser
, &objectID
, &object
))
220 if (em
.len
> object
.len
)
222 DBG1("digestInfo field in signature is followed by %u surplus bytes",
223 em
.len
- object
.len
);
228 case DIGEST_INFO_ALGORITHM
:
230 int hash_oid
= asn1_parse_algorithmIdentifier(object
,
231 parser
->get_level(parser
)+1, NULL
);
233 hash_algorithm
= hasher_algorithm_from_oid(hash_oid
);
234 if (hash_algorithm
== HASH_UNKNOWN
|| hash_algorithm
!= algorithm
)
236 DBG1("expected hash algorithm %N, but found %N (OID: %#B)",
237 hash_algorithm_names
, algorithm
,
238 hash_algorithm_names
, hash_algorithm
, &object
);
243 case DIGEST_INFO_DIGEST
:
248 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, hash_algorithm
);
251 DBG1("hash algorithm %N not supported",
252 hash_algorithm_names
, hash_algorithm
);
256 if (object
.len
!= hasher
->get_hash_size(hasher
))
258 DBG1("hash size in signature is %u bytes instead of %u "
259 "bytes", object
.len
, hasher
->get_hash_size(hasher
));
260 hasher
->destroy(hasher
);
264 /* build our own hash and compare */
265 hasher
->allocate_hash(hasher
, data
, &hash
);
266 hasher
->destroy(hasher
);
267 success
= memeq(object
.ptr
, hash
.ptr
, hash
.len
);
277 success
&= parser
->success(parser
);
278 parser
->destroy(parser
);
287 * Implementation of public_key_t.get_type.
289 static key_type_t
get_type(private_gmp_rsa_public_key_t
*this)
295 * Implementation of public_key_t.verify.
297 static bool verify(private_gmp_rsa_public_key_t
*this, signature_scheme_t scheme
,
298 chunk_t data
, chunk_t signature
)
303 case SIGN_RSA_EMSA_PKCS1_NULL
:
304 return verify_emsa_pkcs1_signature(this, HASH_UNKNOWN
, data
, signature
);
305 case SIGN_RSA_EMSA_PKCS1_MD5
:
306 return verify_emsa_pkcs1_signature(this, HASH_MD5
, data
, signature
);
307 case SIGN_RSA_EMSA_PKCS1_SHA1
:
308 return verify_emsa_pkcs1_signature(this, HASH_SHA1
, data
, signature
);
309 case SIGN_RSA_EMSA_PKCS1_SHA256
:
310 return verify_emsa_pkcs1_signature(this, HASH_SHA256
, data
, signature
);
311 case SIGN_RSA_EMSA_PKCS1_SHA384
:
312 return verify_emsa_pkcs1_signature(this, HASH_SHA384
, data
, signature
);
313 case SIGN_RSA_EMSA_PKCS1_SHA512
:
314 return verify_emsa_pkcs1_signature(this, HASH_SHA512
, data
, signature
);
316 DBG1("signature scheme %N not supported in RSA",
317 signature_scheme_names
, scheme
);
323 * Implementation of public_key_t.get_keysize.
325 static bool encrypt_(private_gmp_rsa_public_key_t
*this, chunk_t crypto
, chunk_t
*plain
)
327 DBG1("RSA public key encryption not implemented");
332 * Implementation of gmp_rsa_public_key.equals.
334 static bool equals(private_gmp_rsa_public_key_t
*this, public_key_t
*other
)
336 identification_t
*keyid
;
338 if (&this->public.interface
== other
)
342 if (other
->get_type(other
) != KEY_RSA
)
346 keyid
= other
->get_id(other
, ID_PUBKEY_SHA1
);
347 if (keyid
&& keyid
->equals(keyid
, this->keyid
))
351 keyid
= other
->get_id(other
, ID_PUBKEY_INFO_SHA1
);
352 if (keyid
&& keyid
->equals(keyid
, this->keyid_info
))
360 * Implementation of public_key_t.get_keysize.
362 static size_t get_keysize(private_gmp_rsa_public_key_t
*this)
368 * Build the PGP version 3 RSA key identifier from n and e using
369 * MD5 hashed modulus and exponent. Also used in rsa_private_key.c.
371 static identification_t
* gmp_rsa_build_pgp_v3_keyid(mpz_t n
, mpz_t e
)
373 identification_t
*keyid
;
374 chunk_t modulus
, mod
, exponent
, exp
, hash
;
377 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_MD5
);
380 DBG1("computation of PGP V3 keyid failed, no MD5 hasher is available");
383 mod
= modulus
= gmp_mpz_to_chunk(n
);
384 exp
= exponent
= gmp_mpz_to_chunk(e
);
386 /* remove leading zero bytes before hashing modulus and exponent */
387 while (mod
.len
> 0 && *mod
.ptr
== 0x00)
392 while (exp
.len
> 0 && *exp
.ptr
== 0x00)
397 hasher
->allocate_hash(hasher
, mod
, NULL
);
398 hasher
->allocate_hash(hasher
, exp
, &hash
);
399 hasher
->destroy(hasher
);
400 keyid
= identification_create_from_encoding(ID_KEY_ID
, hash
);
408 * Implementation of public_key_t.get_id.
410 static identification_t
*get_id(private_gmp_rsa_public_key_t
*this,
415 case ID_PUBKEY_INFO_SHA1
:
416 return this->keyid_info
;
420 return gmp_rsa_build_pgp_v3_keyid(this->n
, this->e
);
427 * Implementation of public_key_t.get_encoding.
429 static chunk_t
get_encoding(private_gmp_rsa_public_key_t
*this)
431 return asn1_wrap(ASN1_SEQUENCE
, "mm",
432 gmp_mpz_to_asn1(this->n
),
433 gmp_mpz_to_asn1(this->e
));
437 * Implementation of public_key_t.get_ref.
439 static private_gmp_rsa_public_key_t
* get_ref(private_gmp_rsa_public_key_t
*this)
446 * Implementation of gmp_rsa_public_key.destroy.
448 static void destroy(private_gmp_rsa_public_key_t
*this)
450 if (ref_put(&this->ref
))
454 DESTROY_IF(this->keyid
);
455 DESTROY_IF(this->keyid_info
);
461 * Generic private constructor
463 static private_gmp_rsa_public_key_t
*gmp_rsa_public_key_create_empty()
465 private_gmp_rsa_public_key_t
*this = malloc_thing(private_gmp_rsa_public_key_t
);
467 this->public.interface
.get_type
= (key_type_t (*) (public_key_t
*))get_type
;
468 this->public.interface
.verify
= (bool (*) (public_key_t
*, signature_scheme_t
, chunk_t
, chunk_t
))verify
;
469 this->public.interface
.encrypt
= (bool (*) (public_key_t
*, chunk_t
, chunk_t
*))encrypt_
;
470 this->public.interface
.equals
= (bool (*) (public_key_t
*, public_key_t
*))equals
;
471 this->public.interface
.get_keysize
= (size_t (*) (public_key_t
*))get_keysize
;
472 this->public.interface
.get_id
= (identification_t
* (*) (public_key_t
*, id_type_t
))get_id
;
473 this->public.interface
.get_encoding
= (chunk_t(*) (public_key_t
*))get_encoding
;
474 this->public.interface
.get_ref
= (public_key_t
* (*) (public_key_t
*this))get_ref
;
475 this->public.interface
.destroy
= (void (*) (public_key_t
*this))destroy
;
478 this->keyid_info
= NULL
;
485 * Build the RSA key identifier from n and e using SHA1 hashed publicKey(Info).
486 * Also used in rsa_private_key.c.
488 bool gmp_rsa_public_key_build_id(mpz_t n
, mpz_t e
, identification_t
**keyid
,
489 identification_t
**keyid_info
)
491 chunk_t publicKeyInfo
, publicKey
, hash
;
494 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_SHA1
);
497 DBG1("SHA1 hash algorithm not supported, unable to use RSA");
500 publicKey
= asn1_wrap(ASN1_SEQUENCE
, "mm",
503 hasher
->allocate_hash(hasher
, publicKey
, &hash
);
504 *keyid
= identification_create_from_encoding(ID_PUBKEY_SHA1
, hash
);
507 publicKeyInfo
= asn1_wrap(ASN1_SEQUENCE
, "cm",
508 asn1_algorithmIdentifier(OID_RSA_ENCRYPTION
),
509 asn1_bitstring("m", publicKey
));
510 hasher
->allocate_hash(hasher
, publicKeyInfo
, &hash
);
511 *keyid_info
= identification_create_from_encoding(ID_PUBKEY_INFO_SHA1
, hash
);
514 hasher
->destroy(hasher
);
515 chunk_free(&publicKeyInfo
);
521 * Create a public key from mpz values, used in gmp_rsa_private_key
523 gmp_rsa_public_key_t
*gmp_rsa_public_key_create_from_n_e(mpz_t n
, mpz_t e
)
525 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
527 mpz_init_set(this->n
, n
);
528 mpz_init_set(this->e
, e
);
530 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
531 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
532 &this->keyid
, &this->keyid_info
))
537 return &this->public;
541 * ASN.1 definition of RSApublicKey
543 static const asn1Object_t pubkeyObjects
[] = {
544 { 0, "RSAPublicKey", ASN1_SEQUENCE
, ASN1_OBJ
}, /* 0 */
545 { 1, "modulus", ASN1_INTEGER
, ASN1_BODY
}, /* 1 */
546 { 1, "publicExponent", ASN1_INTEGER
, ASN1_BODY
}, /* 2 */
547 { 0, "exit", ASN1_EOC
, ASN1_EXIT
}
549 #define PUB_KEY_RSA_PUBLIC_KEY 0
550 #define PUB_KEY_MODULUS 1
551 #define PUB_KEY_EXPONENT 2
554 * Load a public key from an ASN.1 encoded blob
556 static gmp_rsa_public_key_t
*load_asn1_der(chunk_t blob
)
558 asn1_parser_t
*parser
;
561 bool success
= FALSE
;
563 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
568 parser
= asn1_parser_create(pubkeyObjects
, blob
);
570 while (parser
->iterate(parser
, &objectID
, &object
))
574 case PUB_KEY_MODULUS
:
575 mpz_import(this->n
, object
.len
, 1, 1, 1, 0, object
.ptr
);
577 case PUB_KEY_EXPONENT
:
578 mpz_import(this->e
, object
.len
, 1, 1, 1, 0, object
.ptr
);
582 success
= parser
->success(parser
);
584 parser
->destroy(parser
);
592 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
594 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
595 &this->keyid
, &this->keyid_info
))
600 return &this->public;
604 * Load a public key from an OpenPGP blob
606 static gmp_rsa_public_key_t
* load_pgp(chunk_t blob
)
609 chunk_t packet
= blob
;
610 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
615 for (objectID
= PUB_KEY_MODULUS
; objectID
<= PUB_KEY_EXPONENT
; objectID
++)
619 DBG2("L3 - %s:", pubkeyObjects
[objectID
].name
);
620 object
.len
= pgp_length(&packet
, 2);
622 if (object
.len
== PGP_INVALID_LENGTH
)
624 DBG1("OpenPGP length is invalid");
627 object
.len
= (object
.len
+ 7) / BITS_PER_BYTE
;
628 if (object
.len
> packet
.len
)
630 DBG1("OpenPGP field is too short");
633 object
.ptr
= packet
.ptr
;
634 packet
.ptr
+= object
.len
;
635 packet
.len
-= object
.len
;
640 case PUB_KEY_MODULUS
:
641 mpz_import(this->n
, object
.len
, 1, 1, 1, 0, object
.ptr
);
643 case PUB_KEY_EXPONENT
:
644 mpz_import(this->e
, object
.len
, 1, 1, 1, 0, object
.ptr
);
649 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
652 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
653 &this->keyid
, &this->keyid_info
))
658 return &this->public;
667 * Load a public key from an RFC 3110 encoded blob
669 static gmp_rsa_public_key_t
*load_rfc_3110(chunk_t blob
)
671 chunk_t exponent
, modulus
;
672 u_char
*pos
= blob
.ptr
;
673 size_t len
= blob
.len
;
674 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
681 DBG1("RFC 3110 public key blob too short for exponent length");
686 exponent
= chunk_create(pos
+ 1, pos
[0]);
692 exponent
= chunk_create(pos
+ 3, 256*pos
[1] + pos
[2]);
696 if (exponent
.len
> len
)
698 DBG1("RFC 3110 public key blob too short for exponent");
706 DBG1("RFC 3110 public key blob has zero length modulus");
709 modulus
= chunk_create(pos
, len
);
711 mpz_import(this->n
, modulus
.len
, 1, 1, 1, 0, modulus
.ptr
);
712 mpz_import(this->e
, exponent
.len
, 1, 1, 1, 0, exponent
.ptr
);
713 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
716 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
717 &this->keyid
, &this->keyid_info
))
722 return &this->public;
730 typedef struct private_builder_t private_builder_t
;
732 * Builder implementation for key loading
734 struct private_builder_t
{
735 /** implements the builder interface */
737 /** loaded public key */
738 gmp_rsa_public_key_t
*key
;
742 * Implementation of builder_t.build
744 static gmp_rsa_public_key_t
*build(private_builder_t
*this)
746 gmp_rsa_public_key_t
*key
= this->key
;
753 * Implementation of builder_t.add
755 static void add(private_builder_t
*this, builder_part_t part
, ...)
764 case BUILD_BLOB_ASN1_DER
:
766 va_start(args
, part
);
767 chunk
= va_arg(args
, chunk_t
);
768 this->key
= load_asn1_der(chunk_clone(chunk
));
774 va_start(args
, part
);
775 chunk
= va_arg(args
, chunk_t
);
776 this->key
= load_pgp(chunk_clone(chunk
));
780 case BUILD_BLOB_RFC_3110
:
782 va_start(args
, part
);
783 chunk
= va_arg(args
, chunk_t
);
784 this->key
= load_rfc_3110(chunk_clone(chunk
));
794 destroy((private_gmp_rsa_public_key_t
*)this->key
);
796 builder_cancel(&this->public);
800 * Builder construction function
802 builder_t
*gmp_rsa_public_key_builder(key_type_t type
)
804 private_builder_t
*this;
811 this = malloc_thing(private_builder_t
);
814 this->public.add
= (void(*)(builder_t
*this, builder_part_t part
, ...))add
;
815 this->public.build
= (void*(*)(builder_t
*this))build
;
817 return &this->public;