2 * Copyright (c) 2006 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42 #include <krb5-types.h>
43 #include <rfc2459_asn1.h>
50 * @page page_rsa RSA - public-key cryptography
52 * RSA is named by its inventors (Ron Rivest, Adi Shamir, and Leonard
53 * Adleman) (published in 1977), patented expired in 21 September 2000.
55 * See the library functions here: @ref hcrypto_rsa
59 * Same as RSA_new_method() using NULL as engine.
61 * @return a newly allocated RSA object. Free with RSA_free().
63 * @ingroup hcrypto_rsa
69 return RSA_new_method(NULL
);
73 * Allocate a new RSA object using the engine, if NULL is specified as
74 * the engine, use the default RSA engine as returned by
75 * ENGINE_get_default_RSA().
77 * @param engine Specific what ENGINE RSA provider should be used.
79 * @return a newly allocated RSA object. Free with RSA_free().
81 * @ingroup hcrypto_rsa
85 RSA_new_method(ENGINE
*engine
)
89 rsa
= calloc(1, sizeof(*rsa
));
96 ENGINE_up_ref(engine
);
99 rsa
->engine
= ENGINE_get_default_RSA();
103 rsa
->meth
= ENGINE_get_RSA(rsa
->engine
);
104 if (rsa
->meth
== NULL
) {
105 ENGINE_finish(engine
);
111 if (rsa
->meth
== NULL
)
112 rsa
->meth
= rk_UNCONST(RSA_get_default_method());
114 (*rsa
->meth
->init
)(rsa
);
120 * Free an allocation RSA object.
122 * @param rsa the RSA object to free.
123 * @ingroup hcrypto_rsa
129 if (rsa
->references
<= 0)
132 if (--rsa
->references
> 0)
135 (*rsa
->meth
->finish
)(rsa
);
138 ENGINE_finish(rsa
->engine
);
140 #define free_if(f) if (f) { BN_free(f); }
151 memset(rsa
, 0, sizeof(*rsa
));
156 * Add an extra reference to the RSA object. The object should be free
157 * with RSA_free() to drop the reference.
159 * @param rsa the object to add reference counting too.
161 * @return the current reference count, can't safely be used except
162 * for debug printing.
164 * @ingroup hcrypto_rsa
170 return ++rsa
->references
;
174 * Return the RSA_METHOD used for this RSA object.
176 * @param rsa the object to get the method from.
178 * @return the method used for this RSA object.
180 * @ingroup hcrypto_rsa
184 RSA_get_method(const RSA
*rsa
)
190 * Set a new method for the RSA keypair.
192 * @param rsa rsa parameter.
193 * @param method the new method for the RSA parameter.
195 * @return 1 on success.
197 * @ingroup hcrypto_rsa
201 RSA_set_method(RSA
*rsa
, const RSA_METHOD
*method
)
203 (*rsa
->meth
->finish
)(rsa
);
206 ENGINE_finish(rsa
->engine
);
211 (*rsa
->meth
->init
)(rsa
);
216 * Set the application data for the RSA object.
218 * @param rsa the rsa object to set the parameter for
219 * @param arg the data object to store
221 * @return 1 on success.
223 * @ingroup hcrypto_rsa
227 RSA_set_app_data(RSA
*rsa
, void *arg
)
229 rsa
->ex_data
.sk
= arg
;
234 * Get the application data for the RSA object.
236 * @param rsa the rsa object to get the parameter for
238 * @return the data object
240 * @ingroup hcrypto_rsa
244 RSA_get_app_data(RSA
*rsa
)
246 return rsa
->ex_data
.sk
;
250 RSA_check_key(const RSA
*key
)
252 static const unsigned char inbuf
[] = "hello, world!";
253 RSA
*rsa
= rk_UNCONST(key
);
258 * XXX I have no clue how to implement this w/o a bignum library.
259 * Well, when we have a RSA key pair, we can try to encrypt/sign
260 * and then decrypt/verify.
263 if ((rsa
->d
== NULL
|| rsa
->n
== NULL
) &&
264 (rsa
->p
== NULL
|| rsa
->q
|| rsa
->dmp1
== NULL
|| rsa
->dmq1
== NULL
|| rsa
->iqmp
== NULL
))
267 buffer
= malloc(RSA_size(rsa
));
271 ret
= RSA_private_encrypt(sizeof(inbuf
), inbuf
, buffer
,
272 rsa
, RSA_PKCS1_PADDING
);
278 ret
= RSA_public_decrypt(ret
, buffer
, buffer
,
279 rsa
, RSA_PKCS1_PADDING
);
285 if (ret
== sizeof(inbuf
) && memcmp(buffer
, inbuf
, sizeof(inbuf
)) == 0) {
294 RSA_size(const RSA
*rsa
)
296 return BN_num_bytes(rsa
->n
);
299 #define RSAFUNC(name, body) \
301 name(int flen,const unsigned char* f, unsigned char* t, RSA* r, int p){\
305 RSAFUNC(RSA_public_encrypt
, (r
)->meth
->rsa_pub_enc(flen
, f
, t
, r
, p
))
306 RSAFUNC(RSA_public_decrypt
, (r
)->meth
->rsa_pub_dec(flen
, f
, t
, r
, p
))
307 RSAFUNC(RSA_private_encrypt
, (r
)->meth
->rsa_priv_enc(flen
, f
, t
, r
, p
))
308 RSAFUNC(RSA_private_decrypt
, (r
)->meth
->rsa_priv_dec(flen
, f
, t
, r
, p
))
312 RSA_sign(int type
, const unsigned char *from
, unsigned int flen
,
313 unsigned char *to
, unsigned int *tlen
, RSA
*rsa
)
319 RSA_verify(int type
, const unsigned char *from
, unsigned int flen
,
320 unsigned char *to
, unsigned int tlen
, RSA
*rsa
)
326 * A NULL RSA_METHOD that returns failure for all operations. This is
327 * used as the default RSA method if we don't have any native
331 static RSAFUNC(null_rsa_public_encrypt
, -1)
332 static RSAFUNC(null_rsa_public_decrypt
, -1)
333 static RSAFUNC(null_rsa_private_encrypt
, -1)
334 static RSAFUNC(null_rsa_private_decrypt
, -1)
341 RSA_generate_key_ex(RSA
*r
, int bits
, BIGNUM
*e
, BN_GENCB
*cb
)
343 if (r
->meth
->rsa_keygen
)
344 return (*r
->meth
->rsa_keygen
)(r
, bits
, e
, cb
);
354 null_rsa_init(RSA
*rsa
)
360 null_rsa_finish(RSA
*rsa
)
365 static const RSA_METHOD rsa_null_method
= {
367 null_rsa_public_encrypt
,
368 null_rsa_public_decrypt
,
369 null_rsa_private_encrypt
,
370 null_rsa_private_decrypt
,
382 RSA_null_method(void)
384 return &rsa_null_method
;
387 extern const RSA_METHOD hc_rsa_imath_method
;
389 static const RSA_METHOD
*default_rsa_method
= &hc_rsa_gmp_method
;
391 static const RSA_METHOD
*default_rsa_method
= &hc_rsa_imath_method
;
395 RSA_get_default_method(void)
397 return default_rsa_method
;
401 RSA_set_default_method(const RSA_METHOD
*meth
)
403 default_rsa_method
= meth
;
411 heim_int2BN(const heim_integer
*i
)
415 bn
= BN_bin2bn(i
->data
, i
->length
, NULL
);
417 BN_set_negative(bn
, i
->negative
);
422 bn2heim_int(BIGNUM
*bn
, heim_integer
*integer
)
424 integer
->length
= BN_num_bytes(bn
);
425 integer
->data
= malloc(integer
->length
);
426 if (integer
->data
== NULL
) {
430 BN_bn2bin(bn
, integer
->data
);
431 integer
->negative
= BN_is_negative(bn
);
437 d2i_RSAPrivateKey(RSA
*rsa
, const unsigned char **pp
, size_t len
)
444 ret
= decode_RSAPrivateKey(*pp
, len
, &data
, &size
);
453 free_RSAPrivateKey(&data
);
458 k
->n
= heim_int2BN(&data
.modulus
);
459 k
->e
= heim_int2BN(&data
.publicExponent
);
460 k
->d
= heim_int2BN(&data
.privateExponent
);
461 k
->p
= heim_int2BN(&data
.prime1
);
462 k
->q
= heim_int2BN(&data
.prime2
);
463 k
->dmp1
= heim_int2BN(&data
.exponent1
);
464 k
->dmq1
= heim_int2BN(&data
.exponent2
);
465 k
->iqmp
= heim_int2BN(&data
.coefficient
);
466 free_RSAPrivateKey(&data
);
468 if (k
->n
== NULL
|| k
->e
== NULL
|| k
->d
== NULL
|| k
->p
== NULL
||
469 k
->q
== NULL
|| k
->dmp1
== NULL
|| k
->dmq1
== NULL
|| k
->iqmp
== NULL
)
479 i2d_RSAPrivateKey(RSA
*rsa
, unsigned char **pp
)
485 if (rsa
->n
== NULL
|| rsa
->e
== NULL
|| rsa
->d
== NULL
|| rsa
->p
== NULL
||
486 rsa
->q
== NULL
|| rsa
->dmp1
== NULL
|| rsa
->dmq1
== NULL
||
490 memset(&data
, 0, sizeof(data
));
492 ret
= bn2heim_int(rsa
->n
, &data
.modulus
);
493 ret
|= bn2heim_int(rsa
->e
, &data
.publicExponent
);
494 ret
|= bn2heim_int(rsa
->d
, &data
.privateExponent
);
495 ret
|= bn2heim_int(rsa
->p
, &data
.prime1
);
496 ret
|= bn2heim_int(rsa
->q
, &data
.prime2
);
497 ret
|= bn2heim_int(rsa
->dmp1
, &data
.exponent1
);
498 ret
|= bn2heim_int(rsa
->dmq1
, &data
.exponent2
);
499 ret
|= bn2heim_int(rsa
->iqmp
, &data
.coefficient
);
501 free_RSAPrivateKey(&data
);
506 size
= length_RSAPrivateKey(&data
);
507 free_RSAPrivateKey(&data
);
512 ASN1_MALLOC_ENCODE(RSAPrivateKey
, p
, len
, &data
, &size
, ret
);
513 free_RSAPrivateKey(&data
);
519 memcpy(*pp
, p
, size
);
529 i2d_RSAPublicKey(RSA
*rsa
, unsigned char **pp
)
535 memset(&data
, 0, sizeof(data
));
537 if (bn2heim_int(rsa
->n
, &data
.modulus
) ||
538 bn2heim_int(rsa
->e
, &data
.publicExponent
))
540 free_RSAPublicKey(&data
);
545 size
= length_RSAPublicKey(&data
);
546 free_RSAPublicKey(&data
);
551 ASN1_MALLOC_ENCODE(RSAPublicKey
, p
, len
, &data
, &size
, ret
);
552 free_RSAPublicKey(&data
);
558 memcpy(*pp
, p
, size
);