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
);
322 #define MIN_PS_PADDING 8
325 * Implementation of public_key_t.encrypt.
327 static bool encrypt_(private_gmp_rsa_public_key_t
*this, chunk_t plain
,
335 rng
= lib
->crypto
->create_rng(lib
->crypto
, RNG_WEAK
);
338 DBG1("no random generator available");
342 /* number of pseudo-random padding octets */
343 padding
= this->k
- plain
.len
- 3;
344 if (padding
< MIN_PS_PADDING
)
346 DBG1("pseudo-random padding must be at least %d octets", MIN_PS_PADDING
);
350 /* padding according to PKCS#1 7.2.1 (RSAES-PKCS1-v1.5-ENCRYPT) */
351 DBG2("padding %u bytes of data to the rsa modulus size of %u bytes",
354 em
.ptr
= malloc(em
.len
);
359 /* fill with pseudo random octets */
360 rng
->get_bytes(rng
, padding
, pos
);
362 /* replace zero-valued random octets */
363 for (i
= 0; i
< padding
; i
++)
367 rng
->get_bytes(rng
, 1, pos
);
373 /* append the padding terminator */
376 /* now add the data */
377 memcpy(pos
, plain
.ptr
, plain
.len
);
378 DBG3("padded data before rsa encryption: %B", &em
);
380 *crypto
= rsaep(this, em
);
381 DBG3("rsa encrypted data: %B", crypto
);
387 * Implementation of gmp_rsa_public_key.equals.
389 static bool equals(private_gmp_rsa_public_key_t
*this, public_key_t
*other
)
391 identification_t
*keyid
;
393 if (&this->public.interface
== other
)
397 if (other
->get_type(other
) != KEY_RSA
)
401 keyid
= other
->get_id(other
, ID_PUBKEY_SHA1
);
402 if (keyid
&& keyid
->equals(keyid
, this->keyid
))
406 keyid
= other
->get_id(other
, ID_PUBKEY_INFO_SHA1
);
407 if (keyid
&& keyid
->equals(keyid
, this->keyid_info
))
415 * Implementation of public_key_t.get_keysize.
417 static size_t get_keysize(private_gmp_rsa_public_key_t
*this)
423 * Build the PGP version 3 RSA key identifier from n and e using
424 * MD5 hashed modulus and exponent. Also used in rsa_private_key.c.
426 static identification_t
* gmp_rsa_build_pgp_v3_keyid(mpz_t n
, mpz_t e
)
428 identification_t
*keyid
;
429 chunk_t modulus
, mod
, exponent
, exp
, hash
;
432 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_MD5
);
435 DBG1("computation of PGP V3 keyid failed, no MD5 hasher is available");
438 mod
= modulus
= gmp_mpz_to_chunk(n
);
439 exp
= exponent
= gmp_mpz_to_chunk(e
);
441 /* remove leading zero bytes before hashing modulus and exponent */
442 while (mod
.len
> 0 && *mod
.ptr
== 0x00)
447 while (exp
.len
> 0 && *exp
.ptr
== 0x00)
452 hasher
->allocate_hash(hasher
, mod
, NULL
);
453 hasher
->allocate_hash(hasher
, exp
, &hash
);
454 hasher
->destroy(hasher
);
455 keyid
= identification_create_from_encoding(ID_KEY_ID
, hash
);
463 * Implementation of public_key_t.get_id.
465 static identification_t
*get_id(private_gmp_rsa_public_key_t
*this,
470 case ID_PUBKEY_INFO_SHA1
:
471 return this->keyid_info
;
475 return gmp_rsa_build_pgp_v3_keyid(this->n
, this->e
);
482 * Implementation of public_key_t.get_encoding.
484 static chunk_t
get_encoding(private_gmp_rsa_public_key_t
*this)
486 return asn1_wrap(ASN1_SEQUENCE
, "mm",
487 gmp_mpz_to_asn1(this->n
),
488 gmp_mpz_to_asn1(this->e
));
492 * Implementation of public_key_t.get_ref.
494 static private_gmp_rsa_public_key_t
* get_ref(private_gmp_rsa_public_key_t
*this)
501 * Implementation of gmp_rsa_public_key.destroy.
503 static void destroy(private_gmp_rsa_public_key_t
*this)
505 if (ref_put(&this->ref
))
509 DESTROY_IF(this->keyid
);
510 DESTROY_IF(this->keyid_info
);
516 * Generic private constructor
518 static private_gmp_rsa_public_key_t
*gmp_rsa_public_key_create_empty()
520 private_gmp_rsa_public_key_t
*this = malloc_thing(private_gmp_rsa_public_key_t
);
522 this->public.interface
.get_type
= (key_type_t (*) (public_key_t
*))get_type
;
523 this->public.interface
.verify
= (bool (*) (public_key_t
*, signature_scheme_t
, chunk_t
, chunk_t
))verify
;
524 this->public.interface
.encrypt
= (bool (*) (public_key_t
*, chunk_t
, chunk_t
*))encrypt_
;
525 this->public.interface
.equals
= (bool (*) (public_key_t
*, public_key_t
*))equals
;
526 this->public.interface
.get_keysize
= (size_t (*) (public_key_t
*))get_keysize
;
527 this->public.interface
.get_id
= (identification_t
* (*) (public_key_t
*, id_type_t
))get_id
;
528 this->public.interface
.get_encoding
= (chunk_t(*) (public_key_t
*))get_encoding
;
529 this->public.interface
.get_ref
= (public_key_t
* (*) (public_key_t
*this))get_ref
;
530 this->public.interface
.destroy
= (void (*) (public_key_t
*this))destroy
;
533 this->keyid_info
= NULL
;
540 * Build the RSA key identifier from n and e using SHA1 hashed publicKey(Info).
541 * Also used in rsa_private_key.c.
543 bool gmp_rsa_public_key_build_id(mpz_t n
, mpz_t e
, identification_t
**keyid
,
544 identification_t
**keyid_info
)
546 chunk_t publicKeyInfo
, publicKey
, hash
;
549 hasher
= lib
->crypto
->create_hasher(lib
->crypto
, HASH_SHA1
);
552 DBG1("SHA1 hash algorithm not supported, unable to use RSA");
555 publicKey
= asn1_wrap(ASN1_SEQUENCE
, "mm",
558 hasher
->allocate_hash(hasher
, publicKey
, &hash
);
559 *keyid
= identification_create_from_encoding(ID_PUBKEY_SHA1
, hash
);
562 publicKeyInfo
= asn1_wrap(ASN1_SEQUENCE
, "cm",
563 asn1_algorithmIdentifier(OID_RSA_ENCRYPTION
),
564 asn1_bitstring("m", publicKey
));
565 hasher
->allocate_hash(hasher
, publicKeyInfo
, &hash
);
566 *keyid_info
= identification_create_from_encoding(ID_PUBKEY_INFO_SHA1
, hash
);
569 hasher
->destroy(hasher
);
570 chunk_free(&publicKeyInfo
);
576 * Create a public key from mpz values, used in gmp_rsa_private_key
578 gmp_rsa_public_key_t
*gmp_rsa_public_key_create_from_n_e(mpz_t n
, mpz_t e
)
580 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
582 mpz_init_set(this->n
, n
);
583 mpz_init_set(this->e
, e
);
585 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
586 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
587 &this->keyid
, &this->keyid_info
))
592 return &this->public;
596 * ASN.1 definition of RSApublicKey
598 static const asn1Object_t pubkeyObjects
[] = {
599 { 0, "RSAPublicKey", ASN1_SEQUENCE
, ASN1_OBJ
}, /* 0 */
600 { 1, "modulus", ASN1_INTEGER
, ASN1_BODY
}, /* 1 */
601 { 1, "publicExponent", ASN1_INTEGER
, ASN1_BODY
}, /* 2 */
602 { 0, "exit", ASN1_EOC
, ASN1_EXIT
}
604 #define PUB_KEY_RSA_PUBLIC_KEY 0
605 #define PUB_KEY_MODULUS 1
606 #define PUB_KEY_EXPONENT 2
609 * Load a public key from an ASN.1 encoded blob
611 static gmp_rsa_public_key_t
*load_asn1_der(chunk_t blob
)
613 asn1_parser_t
*parser
;
616 bool success
= FALSE
;
618 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
623 parser
= asn1_parser_create(pubkeyObjects
, blob
);
625 while (parser
->iterate(parser
, &objectID
, &object
))
629 case PUB_KEY_MODULUS
:
630 mpz_import(this->n
, object
.len
, 1, 1, 1, 0, object
.ptr
);
632 case PUB_KEY_EXPONENT
:
633 mpz_import(this->e
, object
.len
, 1, 1, 1, 0, object
.ptr
);
637 success
= parser
->success(parser
);
639 parser
->destroy(parser
);
647 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
649 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
650 &this->keyid
, &this->keyid_info
))
655 return &this->public;
659 * Load a public key from an OpenPGP blob
661 static gmp_rsa_public_key_t
* load_pgp(chunk_t blob
)
664 chunk_t packet
= blob
;
665 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
670 for (objectID
= PUB_KEY_MODULUS
; objectID
<= PUB_KEY_EXPONENT
; objectID
++)
674 DBG2("L3 - %s:", pubkeyObjects
[objectID
].name
);
675 object
.len
= pgp_length(&packet
, 2);
677 if (object
.len
== PGP_INVALID_LENGTH
)
679 DBG1("OpenPGP length is invalid");
682 object
.len
= (object
.len
+ 7) / BITS_PER_BYTE
;
683 if (object
.len
> packet
.len
)
685 DBG1("OpenPGP field is too short");
688 object
.ptr
= packet
.ptr
;
689 packet
.ptr
+= object
.len
;
690 packet
.len
-= object
.len
;
695 case PUB_KEY_MODULUS
:
696 mpz_import(this->n
, object
.len
, 1, 1, 1, 0, object
.ptr
);
698 case PUB_KEY_EXPONENT
:
699 mpz_import(this->e
, object
.len
, 1, 1, 1, 0, object
.ptr
);
704 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
707 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
708 &this->keyid
, &this->keyid_info
))
713 return &this->public;
722 * Load a public key from an RFC 3110 encoded blob
724 static gmp_rsa_public_key_t
*load_rfc_3110(chunk_t blob
)
726 chunk_t exponent
, modulus
;
727 u_char
*pos
= blob
.ptr
;
728 size_t len
= blob
.len
;
729 private_gmp_rsa_public_key_t
*this = gmp_rsa_public_key_create_empty();
736 DBG1("RFC 3110 public key blob too short for exponent length");
741 exponent
= chunk_create(pos
+ 1, pos
[0]);
747 exponent
= chunk_create(pos
+ 3, 256*pos
[1] + pos
[2]);
751 if (exponent
.len
> len
)
753 DBG1("RFC 3110 public key blob too short for exponent");
761 DBG1("RFC 3110 public key blob has zero length modulus");
764 modulus
= chunk_create(pos
, len
);
766 mpz_import(this->n
, modulus
.len
, 1, 1, 1, 0, modulus
.ptr
);
767 mpz_import(this->e
, exponent
.len
, 1, 1, 1, 0, exponent
.ptr
);
768 this->k
= (mpz_sizeinbase(this->n
, 2) + 7) / BITS_PER_BYTE
;
771 if (!gmp_rsa_public_key_build_id(this->n
, this->e
,
772 &this->keyid
, &this->keyid_info
))
777 return &this->public;
785 typedef struct private_builder_t private_builder_t
;
787 * Builder implementation for key loading
789 struct private_builder_t
{
790 /** implements the builder interface */
792 /** loaded public key */
793 gmp_rsa_public_key_t
*key
;
797 * Implementation of builder_t.build
799 static gmp_rsa_public_key_t
*build(private_builder_t
*this)
801 gmp_rsa_public_key_t
*key
= this->key
;
808 * Implementation of builder_t.add
810 static void add(private_builder_t
*this, builder_part_t part
, ...)
819 case BUILD_BLOB_ASN1_DER
:
821 va_start(args
, part
);
822 chunk
= va_arg(args
, chunk_t
);
823 this->key
= load_asn1_der(chunk_clone(chunk
));
829 va_start(args
, part
);
830 chunk
= va_arg(args
, chunk_t
);
831 this->key
= load_pgp(chunk_clone(chunk
));
835 case BUILD_BLOB_RFC_3110
:
837 va_start(args
, part
);
838 chunk
= va_arg(args
, chunk_t
);
839 this->key
= load_rfc_3110(chunk_clone(chunk
));
849 destroy((private_gmp_rsa_public_key_t
*)this->key
);
851 builder_cancel(&this->public);
855 * Builder construction function
857 builder_t
*gmp_rsa_public_key_builder(key_type_t type
)
859 private_builder_t
*this;
866 this = malloc_thing(private_builder_t
);
869 this->public.add
= (void(*)(builder_t
*this, builder_part_t part
, ...))add
;
870 this->public.build
= (void*(*)(builder_t
*this))build
;
872 return &this->public;