Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 
 

190 righe
6.1 KiB

  1. /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
  2. * project 2006.
  3. */
  4. /* ====================================================================
  5. * Copyright (c) 2006 The OpenSSL Project. All rights reserved.
  6. *
  7. * Redistribution and use in source and binary forms, with or without
  8. * modification, are permitted provided that the following conditions
  9. * are met:
  10. *
  11. * 1. Redistributions of source code must retain the above copyright
  12. * notice, this list of conditions and the following disclaimer.
  13. *
  14. * 2. Redistributions in binary form must reproduce the above copyright
  15. * notice, this list of conditions and the following disclaimer in
  16. * the documentation and/or other materials provided with the
  17. * distribution.
  18. *
  19. * 3. All advertising materials mentioning features or use of this
  20. * software must display the following acknowledgment:
  21. * "This product includes software developed by the OpenSSL Project
  22. * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
  23. *
  24. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  25. * endorse or promote products derived from this software without
  26. * prior written permission. For written permission, please contact
  27. * licensing@OpenSSL.org.
  28. *
  29. * 5. Products derived from this software may not be called "OpenSSL"
  30. * nor may "OpenSSL" appear in their names without prior written
  31. * permission of the OpenSSL Project.
  32. *
  33. * 6. Redistributions of any form whatsoever must retain the following
  34. * acknowledgment:
  35. * "This product includes software developed by the OpenSSL Project
  36. * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
  37. *
  38. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  39. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  40. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  41. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  42. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  43. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  44. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  45. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  46. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  47. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  48. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  49. * OF THE POSSIBILITY OF SUCH DAMAGE.
  50. * ====================================================================
  51. *
  52. * This product includes cryptographic software written by Eric Young
  53. * (eay@cryptsoft.com). This product includes software written by Tim
  54. * Hudson (tjh@cryptsoft.com). */
  55. #include <openssl/evp.h>
  56. #include <openssl/bn.h>
  57. #include <openssl/bytestring.h>
  58. #include <openssl/digest.h>
  59. #include <openssl/err.h>
  60. #include <openssl/mem.h>
  61. #include <openssl/rsa.h>
  62. #include "../fipsmodule/rsa/internal.h"
  63. #include "internal.h"
  64. static int rsa_pub_encode(CBB *out, const EVP_PKEY *key) {
  65. // See RFC 3279, section 2.3.1.
  66. CBB spki, algorithm, oid, null, key_bitstring;
  67. if (!CBB_add_asn1(out, &spki, CBS_ASN1_SEQUENCE) ||
  68. !CBB_add_asn1(&spki, &algorithm, CBS_ASN1_SEQUENCE) ||
  69. !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
  70. !CBB_add_bytes(&oid, rsa_asn1_meth.oid, rsa_asn1_meth.oid_len) ||
  71. !CBB_add_asn1(&algorithm, &null, CBS_ASN1_NULL) ||
  72. !CBB_add_asn1(&spki, &key_bitstring, CBS_ASN1_BITSTRING) ||
  73. !CBB_add_u8(&key_bitstring, 0 /* padding */) ||
  74. !RSA_marshal_public_key(&key_bitstring, key->pkey.rsa) ||
  75. !CBB_flush(out)) {
  76. OPENSSL_PUT_ERROR(EVP, EVP_R_ENCODE_ERROR);
  77. return 0;
  78. }
  79. return 1;
  80. }
  81. static int rsa_pub_decode(EVP_PKEY *out, CBS *params, CBS *key) {
  82. // See RFC 3279, section 2.3.1.
  83. // The parameters must be NULL.
  84. CBS null;
  85. if (!CBS_get_asn1(params, &null, CBS_ASN1_NULL) ||
  86. CBS_len(&null) != 0 ||
  87. CBS_len(params) != 0) {
  88. OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
  89. return 0;
  90. }
  91. RSA *rsa = RSA_parse_public_key(key);
  92. if (rsa == NULL || CBS_len(key) != 0) {
  93. OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
  94. RSA_free(rsa);
  95. return 0;
  96. }
  97. EVP_PKEY_assign_RSA(out, rsa);
  98. return 1;
  99. }
  100. static int rsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) {
  101. return BN_cmp(b->pkey.rsa->n, a->pkey.rsa->n) == 0 &&
  102. BN_cmp(b->pkey.rsa->e, a->pkey.rsa->e) == 0;
  103. }
  104. static int rsa_priv_encode(CBB *out, const EVP_PKEY *key) {
  105. CBB pkcs8, algorithm, oid, null, private_key;
  106. if (!CBB_add_asn1(out, &pkcs8, CBS_ASN1_SEQUENCE) ||
  107. !CBB_add_asn1_uint64(&pkcs8, 0 /* version */) ||
  108. !CBB_add_asn1(&pkcs8, &algorithm, CBS_ASN1_SEQUENCE) ||
  109. !CBB_add_asn1(&algorithm, &oid, CBS_ASN1_OBJECT) ||
  110. !CBB_add_bytes(&oid, rsa_asn1_meth.oid, rsa_asn1_meth.oid_len) ||
  111. !CBB_add_asn1(&algorithm, &null, CBS_ASN1_NULL) ||
  112. !CBB_add_asn1(&pkcs8, &private_key, CBS_ASN1_OCTETSTRING) ||
  113. !RSA_marshal_private_key(&private_key, key->pkey.rsa) ||
  114. !CBB_flush(out)) {
  115. OPENSSL_PUT_ERROR(EVP, EVP_R_ENCODE_ERROR);
  116. return 0;
  117. }
  118. return 1;
  119. }
  120. static int rsa_priv_decode(EVP_PKEY *out, CBS *params, CBS *key) {
  121. // Per RFC 3447, A.1, the parameters have type NULL.
  122. CBS null;
  123. if (!CBS_get_asn1(params, &null, CBS_ASN1_NULL) ||
  124. CBS_len(&null) != 0 ||
  125. CBS_len(params) != 0) {
  126. OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
  127. return 0;
  128. }
  129. RSA *rsa = RSA_parse_private_key(key);
  130. if (rsa == NULL || CBS_len(key) != 0) {
  131. OPENSSL_PUT_ERROR(EVP, EVP_R_DECODE_ERROR);
  132. RSA_free(rsa);
  133. return 0;
  134. }
  135. EVP_PKEY_assign_RSA(out, rsa);
  136. return 1;
  137. }
  138. static int rsa_opaque(const EVP_PKEY *pkey) {
  139. return RSA_is_opaque(pkey->pkey.rsa);
  140. }
  141. static int int_rsa_size(const EVP_PKEY *pkey) {
  142. return RSA_size(pkey->pkey.rsa);
  143. }
  144. static int rsa_bits(const EVP_PKEY *pkey) {
  145. return RSA_bits(pkey->pkey.rsa);
  146. }
  147. static void int_rsa_free(EVP_PKEY *pkey) { RSA_free(pkey->pkey.rsa); }
  148. const EVP_PKEY_ASN1_METHOD rsa_asn1_meth = {
  149. EVP_PKEY_RSA,
  150. // 1.2.840.113549.1.1.1
  151. {0x2a, 0x86, 0x48, 0x86, 0xf7, 0x0d, 0x01, 0x01, 0x01}, 9,
  152. rsa_pub_decode,
  153. rsa_pub_encode,
  154. rsa_pub_cmp,
  155. rsa_priv_decode,
  156. rsa_priv_encode,
  157. rsa_opaque,
  158. int_rsa_size,
  159. rsa_bits,
  160. 0,0,0,
  161. int_rsa_free,
  162. };