crypto_internal-rsa.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /*
  2. * Crypto wrapper for internal crypto implementation - RSA parts
  3. * Copyright (c) 2006-2009, Jouni Malinen <j@w1.fi>
  4. *
  5. * This software may be distributed under the terms of the BSD license.
  6. * See README for more details.
  7. */
  8. #include "includes.h"
  9. #include "common.h"
  10. #include "crypto.h"
  11. #include "tls/rsa.h"
  12. #include "tls/pkcs1.h"
  13. #include "tls/pkcs8.h"
  14. /* Dummy structures; these are just typecast to struct crypto_rsa_key */
  15. struct crypto_public_key;
  16. struct crypto_private_key;
  17. struct crypto_public_key * crypto_public_key_import(const u8 *key, size_t len)
  18. {
  19. return (struct crypto_public_key *)
  20. crypto_rsa_import_public_key(key, len);
  21. }
  22. struct crypto_private_key * crypto_private_key_import(const u8 *key,
  23. size_t len,
  24. const char *passwd)
  25. {
  26. struct crypto_private_key *res;
  27. /* First, check for possible PKCS #8 encoding */
  28. res = pkcs8_key_import(key, len);
  29. if (res)
  30. return res;
  31. if (passwd) {
  32. /* Try to parse as encrypted PKCS #8 */
  33. res = pkcs8_enc_key_import(key, len, passwd);
  34. if (res)
  35. return res;
  36. }
  37. /* Not PKCS#8, so try to import PKCS #1 encoded RSA private key */
  38. wpa_printf(MSG_DEBUG, "Trying to parse PKCS #1 encoded RSA private "
  39. "key");
  40. return (struct crypto_private_key *)
  41. crypto_rsa_import_private_key(key, len);
  42. }
  43. struct crypto_public_key * crypto_public_key_from_cert(const u8 *buf,
  44. size_t len)
  45. {
  46. /* No X.509 support in crypto_internal.c */
  47. return NULL;
  48. }
  49. int crypto_public_key_encrypt_pkcs1_v15(struct crypto_public_key *key,
  50. const u8 *in, size_t inlen,
  51. u8 *out, size_t *outlen)
  52. {
  53. return pkcs1_encrypt(2, (struct crypto_rsa_key *) key,
  54. 0, in, inlen, out, outlen);
  55. }
  56. int crypto_private_key_decrypt_pkcs1_v15(struct crypto_private_key *key,
  57. const u8 *in, size_t inlen,
  58. u8 *out, size_t *outlen)
  59. {
  60. return pkcs1_v15_private_key_decrypt((struct crypto_rsa_key *) key,
  61. in, inlen, out, outlen);
  62. }
  63. int crypto_private_key_sign_pkcs1(struct crypto_private_key *key,
  64. const u8 *in, size_t inlen,
  65. u8 *out, size_t *outlen)
  66. {
  67. return pkcs1_encrypt(1, (struct crypto_rsa_key *) key,
  68. 1, in, inlen, out, outlen);
  69. }
  70. void crypto_public_key_free(struct crypto_public_key *key)
  71. {
  72. crypto_rsa_free((struct crypto_rsa_key *) key);
  73. }
  74. void crypto_private_key_free(struct crypto_private_key *key)
  75. {
  76. crypto_rsa_free((struct crypto_rsa_key *) key);
  77. }
  78. int crypto_public_key_decrypt_pkcs1(struct crypto_public_key *key,
  79. const u8 *crypt, size_t crypt_len,
  80. u8 *plain, size_t *plain_len)
  81. {
  82. return pkcs1_decrypt_public_key((struct crypto_rsa_key *) key,
  83. crypt, crypt_len, plain, plain_len);
  84. }