diff options
| author | djm <> | 2010-10-01 22:59:01 +0000 |
|---|---|---|
| committer | djm <> | 2010-10-01 22:59:01 +0000 |
| commit | 8922d4bc4a8b8893d72a48deb2cdf58215f98505 (patch) | |
| tree | 939b752540947d33507b3acc48d76a8bfb7c3dc3 /src/lib/libcrypto/rsa | |
| parent | 76262f7bf9262f965142b1b2b2105cb279c5c696 (diff) | |
| download | openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.gz openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.bz2 openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.zip | |
resolve conflicts, fix local changes
Diffstat (limited to 'src/lib/libcrypto/rsa')
| -rw-r--r-- | src/lib/libcrypto/rsa/Makefile | 123 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/Makefile.ssl | 241 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa.h | 89 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_asn1.c | 16 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_eay.c | 28 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_eng.c | 348 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_err.c | 29 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_gen.c | 3 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_lib.c | 283 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_oaep.c | 35 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_sign.c | 88 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_test.c | 2 | ||||
| -rw-r--r-- | src/lib/libcrypto/rsa/rsa_x931g.c | 255 |
13 files changed, 485 insertions, 1055 deletions
diff --git a/src/lib/libcrypto/rsa/Makefile b/src/lib/libcrypto/rsa/Makefile index 7b1fd6428c..bb64223e05 100644 --- a/src/lib/libcrypto/rsa/Makefile +++ b/src/lib/libcrypto/rsa/Makefile | |||
| @@ -19,10 +19,12 @@ APPS= | |||
| 19 | LIB=$(TOP)/libcrypto.a | 19 | LIB=$(TOP)/libcrypto.a |
| 20 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ | 20 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ |
| 21 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ | 21 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ |
| 22 | rsa_pss.c rsa_x931.c rsa_x931g.c rsa_asn1.c rsa_depr.c rsa_eng.c | 22 | rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c \ |
| 23 | rsa_pmeth.c | ||
| 23 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ | 24 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ |
| 24 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | 25 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ |
| 25 | rsa_pss.o rsa_x931.o rsa_x931g.o rsa_asn1.o rsa_depr.o rsa_eng.o | 26 | rsa_pss.o rsa_x931.o rsa_asn1.o rsa_depr.o rsa_ameth.o rsa_prn.o \ |
| 27 | rsa_pmeth.o | ||
| 26 | 28 | ||
| 27 | SRC= $(LIBSRC) | 29 | SRC= $(LIBSRC) |
| 28 | 30 | ||
| @@ -37,7 +39,7 @@ top: | |||
| 37 | all: lib | 39 | all: lib |
| 38 | 40 | ||
| 39 | lib: $(LIBOBJ) | 41 | lib: $(LIBOBJ) |
| 40 | $(ARX) $(LIB) $(LIBOBJ) | 42 | $(AR) $(LIB) $(LIBOBJ) |
| 41 | $(RANLIB) $(LIB) || echo Never mind. | 43 | $(RANLIB) $(LIB) || echo Never mind. |
| 42 | @touch lib | 44 | @touch lib |
| 43 | 45 | ||
| @@ -78,6 +80,22 @@ clean: | |||
| 78 | 80 | ||
| 79 | # DO NOT DELETE THIS LINE -- make depend depends on it. | 81 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
| 80 | 82 | ||
| 83 | rsa_ameth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 84 | rsa_ameth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 85 | rsa_ameth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 86 | rsa_ameth.o: ../../include/openssl/cms.h ../../include/openssl/crypto.h | ||
| 87 | rsa_ameth.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 88 | rsa_ameth.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 89 | rsa_ameth.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 90 | rsa_ameth.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 91 | rsa_ameth.o: ../../include/openssl/objects.h | ||
| 92 | rsa_ameth.o: ../../include/openssl/opensslconf.h | ||
| 93 | rsa_ameth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 94 | rsa_ameth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 95 | rsa_ameth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 96 | rsa_ameth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 97 | rsa_ameth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 98 | rsa_ameth.o: ../asn1/asn1_locl.h ../cryptlib.h rsa_ameth.c | ||
| 81 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | 99 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h |
| 82 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | 100 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h |
| 83 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | 101 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h |
| @@ -114,21 +132,6 @@ rsa_eay.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 114 | rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 132 | rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 115 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 133 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 116 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c | 134 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c |
| 117 | rsa_eng.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 118 | rsa_eng.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 119 | rsa_eng.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 120 | rsa_eng.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | ||
| 121 | rsa_eng.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | ||
| 122 | rsa_eng.o: ../../include/openssl/engine.h ../../include/openssl/err.h | ||
| 123 | rsa_eng.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | ||
| 124 | rsa_eng.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 125 | rsa_eng.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 126 | rsa_eng.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 127 | rsa_eng.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | ||
| 128 | rsa_eng.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 129 | rsa_eng.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | ||
| 130 | rsa_eng.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | ||
| 131 | rsa_eng.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_eng.c | ||
| 132 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | 135 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h |
| 133 | rsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | 136 | rsa_err.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h |
| 134 | rsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | 137 | rsa_err.o: ../../include/openssl/err.h ../../include/openssl/lhash.h |
| @@ -151,15 +154,15 @@ rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
| 151 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 154 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
| 152 | rsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 155 | rsa_lib.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
| 153 | rsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h | 156 | rsa_lib.o: ../../include/openssl/engine.h ../../include/openssl/err.h |
| 154 | rsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 157 | rsa_lib.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 155 | rsa_lib.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 158 | rsa_lib.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 156 | rsa_lib.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 159 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 157 | rsa_lib.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 160 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/pkcs7.h |
| 158 | rsa_lib.o: ../../include/openssl/pkcs7.h ../../include/openssl/rand.h | 161 | rsa_lib.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 159 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | 162 | rsa_lib.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 160 | rsa_lib.o: ../../include/openssl/sha.h ../../include/openssl/stack.h | 163 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 161 | rsa_lib.o: ../../include/openssl/symhacks.h ../../include/openssl/x509.h | 164 | rsa_lib.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 162 | rsa_lib.o: ../../include/openssl/x509_vfy.h ../cryptlib.h rsa_lib.c | 165 | rsa_lib.o: ../cryptlib.h rsa_lib.c |
| 163 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | 166 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h |
| 164 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 167 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 165 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 168 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -182,9 +185,9 @@ rsa_oaep.o: ../../e_os.h ../../include/openssl/asn1.h | |||
| 182 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 185 | rsa_oaep.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 183 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 186 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 184 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 187 | rsa_oaep.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 185 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 188 | rsa_oaep.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 186 | rsa_oaep.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 189 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 187 | rsa_oaep.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 190 | rsa_oaep.o: ../../include/openssl/opensslconf.h |
| 188 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 191 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 189 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 192 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 190 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 193 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| @@ -199,27 +202,50 @@ rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 199 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 202 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 200 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 203 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 201 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | 204 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c |
| 205 | rsa_pmeth.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 206 | rsa_pmeth.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 207 | rsa_pmeth.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 208 | rsa_pmeth.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 209 | rsa_pmeth.o: ../../include/openssl/ec.h ../../include/openssl/ecdh.h | ||
| 210 | rsa_pmeth.o: ../../include/openssl/ecdsa.h ../../include/openssl/err.h | ||
| 211 | rsa_pmeth.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h | ||
| 212 | rsa_pmeth.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 213 | rsa_pmeth.o: ../../include/openssl/opensslconf.h | ||
| 214 | rsa_pmeth.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 215 | rsa_pmeth.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | ||
| 216 | rsa_pmeth.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 217 | rsa_pmeth.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 218 | rsa_pmeth.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 219 | rsa_pmeth.o: ../cryptlib.h ../evp/evp_locl.h rsa_locl.h rsa_pmeth.c | ||
| 220 | rsa_prn.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 221 | rsa_prn.o: ../../include/openssl/bio.h ../../include/openssl/buffer.h | ||
| 222 | rsa_prn.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 223 | rsa_prn.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 224 | rsa_prn.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | ||
| 225 | rsa_prn.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | ||
| 226 | rsa_prn.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 227 | rsa_prn.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 228 | rsa_prn.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 229 | rsa_prn.o: ../cryptlib.h rsa_prn.c | ||
| 202 | rsa_pss.o: ../../e_os.h ../../include/openssl/asn1.h | 230 | rsa_pss.o: ../../e_os.h ../../include/openssl/asn1.h |
| 203 | rsa_pss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 231 | rsa_pss.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 204 | rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 232 | rsa_pss.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 205 | rsa_pss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | 233 | rsa_pss.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h |
| 206 | rsa_pss.o: ../../include/openssl/evp.h ../../include/openssl/fips.h | 234 | rsa_pss.o: ../../include/openssl/evp.h ../../include/openssl/lhash.h |
| 207 | rsa_pss.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h | 235 | rsa_pss.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h |
| 208 | rsa_pss.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h | 236 | rsa_pss.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h |
| 209 | rsa_pss.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 237 | rsa_pss.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h |
| 210 | rsa_pss.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 238 | rsa_pss.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h |
| 211 | rsa_pss.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 239 | rsa_pss.o: ../../include/openssl/sha.h ../../include/openssl/stack.h |
| 212 | rsa_pss.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 240 | rsa_pss.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pss.c |
| 213 | rsa_pss.o: ../cryptlib.h rsa_pss.c | ||
| 214 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h | 241 | rsa_saos.o: ../../e_os.h ../../include/openssl/asn1.h |
| 215 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 242 | rsa_saos.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 216 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 243 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| 217 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 244 | rsa_saos.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
| 218 | rsa_saos.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 245 | rsa_saos.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
| 219 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 246 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 220 | rsa_saos.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 247 | rsa_saos.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 221 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 248 | rsa_saos.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 222 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
| 223 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 249 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 224 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 250 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 225 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 251 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| @@ -232,15 +258,14 @@ rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | |||
| 232 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h | 258 | rsa_sign.o: ../../include/openssl/e_os2.h ../../include/openssl/ec.h |
| 233 | rsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h | 259 | rsa_sign.o: ../../include/openssl/ecdh.h ../../include/openssl/ecdsa.h |
| 234 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | 260 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h |
| 235 | rsa_sign.o: ../../include/openssl/fips.h ../../include/openssl/lhash.h | 261 | rsa_sign.o: ../../include/openssl/lhash.h ../../include/openssl/obj_mac.h |
| 236 | rsa_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | 262 | rsa_sign.o: ../../include/openssl/objects.h ../../include/openssl/opensslconf.h |
| 237 | rsa_sign.o: ../../include/openssl/opensslconf.h | ||
| 238 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | 263 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h |
| 239 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h | 264 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rsa.h |
| 240 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | 265 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h |
| 241 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | 266 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h |
| 242 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | 267 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h |
| 243 | rsa_sign.o: ../cryptlib.h rsa_sign.c | 268 | rsa_sign.o: ../cryptlib.h rsa_locl.h rsa_sign.c |
| 244 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | 269 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h |
| 245 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | 270 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h |
| 246 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | 271 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h |
| @@ -260,11 +285,3 @@ rsa_x931.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | |||
| 260 | rsa_x931.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | 285 | rsa_x931.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h |
| 261 | rsa_x931.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | 286 | rsa_x931.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h |
| 262 | rsa_x931.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_x931.c | 287 | rsa_x931.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_x931.c |
| 263 | rsa_x931g.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 264 | rsa_x931g.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 265 | rsa_x931g.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 266 | rsa_x931g.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 267 | rsa_x931g.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 268 | rsa_x931g.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 269 | rsa_x931g.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 270 | rsa_x931g.o: rsa_x931g.c | ||
diff --git a/src/lib/libcrypto/rsa/Makefile.ssl b/src/lib/libcrypto/rsa/Makefile.ssl deleted file mode 100644 index 8089344a04..0000000000 --- a/src/lib/libcrypto/rsa/Makefile.ssl +++ /dev/null | |||
| @@ -1,241 +0,0 @@ | |||
| 1 | # | ||
| 2 | # SSLeay/crypto/rsa/Makefile | ||
| 3 | # | ||
| 4 | |||
| 5 | DIR= rsa | ||
| 6 | TOP= ../.. | ||
| 7 | CC= cc | ||
| 8 | INCLUDES= -I.. -I$(TOP) -I../../include | ||
| 9 | CFLAG=-g | ||
| 10 | INSTALL_PREFIX= | ||
| 11 | OPENSSLDIR= /usr/local/ssl | ||
| 12 | INSTALLTOP=/usr/local/ssl | ||
| 13 | MAKE= make -f Makefile.ssl | ||
| 14 | MAKEDEPPROG= makedepend | ||
| 15 | MAKEDEPEND= $(TOP)/util/domd $(TOP) -MD $(MAKEDEPPROG) | ||
| 16 | MAKEFILE= Makefile.ssl | ||
| 17 | AR= ar r | ||
| 18 | |||
| 19 | CFLAGS= $(INCLUDES) $(CFLAG) | ||
| 20 | |||
| 21 | GENERAL=Makefile | ||
| 22 | TEST=rsa_test.c | ||
| 23 | APPS= | ||
| 24 | |||
| 25 | LIB=$(TOP)/libcrypto.a | ||
| 26 | LIBSRC= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c \ | ||
| 27 | rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c \ | ||
| 28 | rsa_asn1.c | ||
| 29 | LIBOBJ= rsa_eay.o rsa_gen.o rsa_lib.o rsa_sign.o rsa_saos.o rsa_err.o \ | ||
| 30 | rsa_pk1.o rsa_ssl.o rsa_none.o rsa_oaep.o rsa_chk.o rsa_null.o \ | ||
| 31 | rsa_asn1.o | ||
| 32 | |||
| 33 | SRC= $(LIBSRC) | ||
| 34 | |||
| 35 | EXHEADER= rsa.h | ||
| 36 | HEADER= $(EXHEADER) | ||
| 37 | |||
| 38 | ALL= $(GENERAL) $(SRC) $(HEADER) | ||
| 39 | |||
| 40 | top: | ||
| 41 | (cd ../..; $(MAKE) DIRS=crypto SDIRS=$(DIR) sub_all) | ||
| 42 | |||
| 43 | all: lib | ||
| 44 | |||
| 45 | lib: $(LIBOBJ) | ||
| 46 | $(AR) $(LIB) $(LIBOBJ) | ||
| 47 | $(RANLIB) $(LIB) || echo Never mind. | ||
| 48 | @touch lib | ||
| 49 | |||
| 50 | files: | ||
| 51 | $(PERL) $(TOP)/util/files.pl Makefile.ssl >> $(TOP)/MINFO | ||
| 52 | |||
| 53 | links: | ||
| 54 | @sh $(TOP)/util/point.sh Makefile.ssl Makefile | ||
| 55 | @$(PERL) $(TOP)/util/mklink.pl ../../include/openssl $(EXHEADER) | ||
| 56 | @$(PERL) $(TOP)/util/mklink.pl ../../test $(TEST) | ||
| 57 | @$(PERL) $(TOP)/util/mklink.pl ../../apps $(APPS) | ||
| 58 | |||
| 59 | install: | ||
| 60 | @for i in $(EXHEADER) ; \ | ||
| 61 | do \ | ||
| 62 | (cp $$i $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i; \ | ||
| 63 | chmod 644 $(INSTALL_PREFIX)$(INSTALLTOP)/include/openssl/$$i ); \ | ||
| 64 | done; | ||
| 65 | |||
| 66 | tags: | ||
| 67 | ctags $(SRC) | ||
| 68 | |||
| 69 | tests: | ||
| 70 | |||
| 71 | lint: | ||
| 72 | lint -DLINT $(INCLUDES) $(SRC)>fluff | ||
| 73 | |||
| 74 | depend: | ||
| 75 | $(MAKEDEPEND) -- $(CFLAG) $(INCLUDES) $(DEPFLAG) -- $(PROGS) $(LIBSRC) | ||
| 76 | |||
| 77 | dclean: | ||
| 78 | $(PERL) -pe 'if (/^# DO NOT DELETE THIS LINE/) {print; exit(0);}' $(MAKEFILE) >Makefile.new | ||
| 79 | mv -f Makefile.new $(MAKEFILE) | ||
| 80 | |||
| 81 | clean: | ||
| 82 | rm -f *.o */*.o *.obj lib tags core .pure .nfs* *.old *.bak fluff | ||
| 83 | |||
| 84 | # DO NOT DELETE THIS LINE -- make depend depends on it. | ||
| 85 | |||
| 86 | rsa_asn1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 87 | rsa_asn1.o: ../../include/openssl/asn1t.h ../../include/openssl/bio.h | ||
| 88 | rsa_asn1.o: ../../include/openssl/bn.h ../../include/openssl/buffer.h | ||
| 89 | rsa_asn1.o: ../../include/openssl/crypto.h ../../include/openssl/e_os2.h | ||
| 90 | rsa_asn1.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 91 | rsa_asn1.o: ../../include/openssl/opensslconf.h | ||
| 92 | rsa_asn1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 93 | rsa_asn1.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 94 | rsa_asn1.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 95 | rsa_asn1.o: ../cryptlib.h rsa_asn1.c | ||
| 96 | rsa_chk.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 97 | rsa_chk.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 98 | rsa_chk.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 99 | rsa_chk.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 100 | rsa_chk.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 101 | rsa_chk.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 102 | rsa_chk.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 103 | rsa_chk.o: rsa_chk.c | ||
| 104 | rsa_eay.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 105 | rsa_eay.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 106 | rsa_eay.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 107 | rsa_eay.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 108 | rsa_eay.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 109 | rsa_eay.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 110 | rsa_eay.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 111 | rsa_eay.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 112 | rsa_eay.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_eay.c | ||
| 113 | rsa_err.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 114 | rsa_err.o: ../../include/openssl/bn.h ../../include/openssl/crypto.h | ||
| 115 | rsa_err.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 116 | rsa_err.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 117 | rsa_err.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 118 | rsa_err.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 119 | rsa_err.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 120 | rsa_err.o: rsa_err.c | ||
| 121 | rsa_gen.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 122 | rsa_gen.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 123 | rsa_gen.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 124 | rsa_gen.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 125 | rsa_gen.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 126 | rsa_gen.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 127 | rsa_gen.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 128 | rsa_gen.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 129 | rsa_gen.o: ../cryptlib.h rsa_gen.c | ||
| 130 | rsa_lib.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 131 | rsa_lib.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 132 | rsa_lib.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 133 | rsa_lib.o: ../../include/openssl/dh.h ../../include/openssl/dsa.h | ||
| 134 | rsa_lib.o: ../../include/openssl/e_os2.h ../../include/openssl/engine.h | ||
| 135 | rsa_lib.o: ../../include/openssl/err.h ../../include/openssl/lhash.h | ||
| 136 | rsa_lib.o: ../../include/openssl/opensslconf.h ../../include/openssl/opensslv.h | ||
| 137 | rsa_lib.o: ../../include/openssl/ossl_typ.h ../../include/openssl/rand.h | ||
| 138 | rsa_lib.o: ../../include/openssl/rsa.h ../../include/openssl/safestack.h | ||
| 139 | rsa_lib.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 140 | rsa_lib.o: ../../include/openssl/ui.h ../cryptlib.h rsa_lib.c | ||
| 141 | rsa_none.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 142 | rsa_none.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 143 | rsa_none.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 144 | rsa_none.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 145 | rsa_none.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 146 | rsa_none.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 147 | rsa_none.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 148 | rsa_none.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 149 | rsa_none.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_none.c | ||
| 150 | rsa_null.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 151 | rsa_null.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 152 | rsa_null.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 153 | rsa_null.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 154 | rsa_null.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 155 | rsa_null.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 156 | rsa_null.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 157 | rsa_null.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 158 | rsa_null.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_null.c | ||
| 159 | rsa_oaep.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 160 | rsa_oaep.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 161 | rsa_oaep.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 162 | rsa_oaep.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 163 | rsa_oaep.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 164 | rsa_oaep.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 165 | rsa_oaep.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 166 | rsa_oaep.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 167 | rsa_oaep.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 168 | rsa_oaep.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 169 | rsa_oaep.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 170 | rsa_oaep.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 171 | rsa_oaep.o: ../../include/openssl/opensslconf.h | ||
| 172 | rsa_oaep.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 173 | rsa_oaep.o: ../../include/openssl/rand.h ../../include/openssl/rc2.h | ||
| 174 | rsa_oaep.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 175 | rsa_oaep.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 176 | rsa_oaep.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 177 | rsa_oaep.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 178 | rsa_oaep.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 179 | rsa_oaep.o: ../cryptlib.h rsa_oaep.c | ||
| 180 | rsa_pk1.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 181 | rsa_pk1.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 182 | rsa_pk1.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 183 | rsa_pk1.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 184 | rsa_pk1.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 185 | rsa_pk1.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 186 | rsa_pk1.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 187 | rsa_pk1.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 188 | rsa_pk1.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_pk1.c | ||
| 189 | rsa_saos.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 190 | rsa_saos.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 191 | rsa_saos.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 192 | rsa_saos.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 193 | rsa_saos.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 194 | rsa_saos.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 195 | rsa_saos.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 196 | rsa_saos.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 197 | rsa_saos.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 198 | rsa_saos.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 199 | rsa_saos.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 200 | rsa_saos.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 201 | rsa_saos.o: ../../include/openssl/opensslconf.h | ||
| 202 | rsa_saos.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 203 | rsa_saos.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 204 | rsa_saos.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 205 | rsa_saos.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 206 | rsa_saos.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 207 | rsa_saos.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 208 | rsa_saos.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 209 | rsa_saos.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 210 | rsa_saos.o: ../cryptlib.h rsa_saos.c | ||
| 211 | rsa_sign.o: ../../e_os.h ../../include/openssl/aes.h | ||
| 212 | rsa_sign.o: ../../include/openssl/asn1.h ../../include/openssl/bio.h | ||
| 213 | rsa_sign.o: ../../include/openssl/blowfish.h ../../include/openssl/bn.h | ||
| 214 | rsa_sign.o: ../../include/openssl/buffer.h ../../include/openssl/cast.h | ||
| 215 | rsa_sign.o: ../../include/openssl/crypto.h ../../include/openssl/des.h | ||
| 216 | rsa_sign.o: ../../include/openssl/des_old.h ../../include/openssl/dh.h | ||
| 217 | rsa_sign.o: ../../include/openssl/dsa.h ../../include/openssl/e_os2.h | ||
| 218 | rsa_sign.o: ../../include/openssl/err.h ../../include/openssl/evp.h | ||
| 219 | rsa_sign.o: ../../include/openssl/idea.h ../../include/openssl/lhash.h | ||
| 220 | rsa_sign.o: ../../include/openssl/md2.h ../../include/openssl/md4.h | ||
| 221 | rsa_sign.o: ../../include/openssl/md5.h ../../include/openssl/mdc2.h | ||
| 222 | rsa_sign.o: ../../include/openssl/obj_mac.h ../../include/openssl/objects.h | ||
| 223 | rsa_sign.o: ../../include/openssl/opensslconf.h | ||
| 224 | rsa_sign.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 225 | rsa_sign.o: ../../include/openssl/pkcs7.h ../../include/openssl/rc2.h | ||
| 226 | rsa_sign.o: ../../include/openssl/rc4.h ../../include/openssl/rc5.h | ||
| 227 | rsa_sign.o: ../../include/openssl/ripemd.h ../../include/openssl/rsa.h | ||
| 228 | rsa_sign.o: ../../include/openssl/safestack.h ../../include/openssl/sha.h | ||
| 229 | rsa_sign.o: ../../include/openssl/stack.h ../../include/openssl/symhacks.h | ||
| 230 | rsa_sign.o: ../../include/openssl/ui.h ../../include/openssl/ui_compat.h | ||
| 231 | rsa_sign.o: ../../include/openssl/x509.h ../../include/openssl/x509_vfy.h | ||
| 232 | rsa_sign.o: ../cryptlib.h rsa_sign.c | ||
| 233 | rsa_ssl.o: ../../e_os.h ../../include/openssl/asn1.h | ||
| 234 | rsa_ssl.o: ../../include/openssl/bio.h ../../include/openssl/bn.h | ||
| 235 | rsa_ssl.o: ../../include/openssl/buffer.h ../../include/openssl/crypto.h | ||
| 236 | rsa_ssl.o: ../../include/openssl/e_os2.h ../../include/openssl/err.h | ||
| 237 | rsa_ssl.o: ../../include/openssl/lhash.h ../../include/openssl/opensslconf.h | ||
| 238 | rsa_ssl.o: ../../include/openssl/opensslv.h ../../include/openssl/ossl_typ.h | ||
| 239 | rsa_ssl.o: ../../include/openssl/rand.h ../../include/openssl/rsa.h | ||
| 240 | rsa_ssl.o: ../../include/openssl/safestack.h ../../include/openssl/stack.h | ||
| 241 | rsa_ssl.o: ../../include/openssl/symhacks.h ../cryptlib.h rsa_ssl.c | ||
diff --git a/src/lib/libcrypto/rsa/rsa.h b/src/lib/libcrypto/rsa/rsa.h index 5bb932ae15..cf74343657 100644 --- a/src/lib/libcrypto/rsa/rsa.h +++ b/src/lib/libcrypto/rsa/rsa.h | |||
| @@ -74,25 +74,6 @@ | |||
| 74 | #error RSA is disabled. | 74 | #error RSA is disabled. |
| 75 | #endif | 75 | #endif |
| 76 | 76 | ||
| 77 | /* If this flag is set the RSA method is FIPS compliant and can be used | ||
| 78 | * in FIPS mode. This is set in the validated module method. If an | ||
| 79 | * application sets this flag in its own methods it is its reposibility | ||
| 80 | * to ensure the result is compliant. | ||
| 81 | */ | ||
| 82 | |||
| 83 | #define RSA_FLAG_FIPS_METHOD 0x0400 | ||
| 84 | |||
| 85 | /* If this flag is set the operations normally disabled in FIPS mode are | ||
| 86 | * permitted it is then the applications responsibility to ensure that the | ||
| 87 | * usage is compliant. | ||
| 88 | */ | ||
| 89 | |||
| 90 | #define RSA_FLAG_NON_FIPS_ALLOW 0x0400 | ||
| 91 | |||
| 92 | #ifdef OPENSSL_FIPS | ||
| 93 | #define FIPS_RSA_SIZE_T int | ||
| 94 | #endif | ||
| 95 | |||
| 96 | #ifdef __cplusplus | 77 | #ifdef __cplusplus |
| 97 | extern "C" { | 78 | extern "C" { |
| 98 | #endif | 79 | #endif |
| @@ -136,7 +117,8 @@ struct rsa_meth_st | |||
| 136 | unsigned char *sigret, unsigned int *siglen, const RSA *rsa); | 117 | unsigned char *sigret, unsigned int *siglen, const RSA *rsa); |
| 137 | int (*rsa_verify)(int dtype, | 118 | int (*rsa_verify)(int dtype, |
| 138 | const unsigned char *m, unsigned int m_length, | 119 | const unsigned char *m, unsigned int m_length, |
| 139 | unsigned char *sigbuf, unsigned int siglen, const RSA *rsa); | 120 | const unsigned char *sigbuf, unsigned int siglen, |
| 121 | const RSA *rsa); | ||
| 140 | /* If this callback is NULL, the builtin software RSA key-gen will be used. This | 122 | /* If this callback is NULL, the builtin software RSA key-gen will be used. This |
| 141 | * is for behavioural compatibility whilst the code gets rewired, but one day | 123 | * is for behavioural compatibility whilst the code gets rewired, but one day |
| 142 | * it would be nice to assume there are no such things as "builtin software" | 124 | * it would be nice to assume there are no such things as "builtin software" |
| @@ -182,8 +164,6 @@ struct rsa_st | |||
| 182 | # define OPENSSL_RSA_MAX_MODULUS_BITS 16384 | 164 | # define OPENSSL_RSA_MAX_MODULUS_BITS 16384 |
| 183 | #endif | 165 | #endif |
| 184 | 166 | ||
| 185 | #define OPENSSL_RSA_FIPS_MIN_MODULUS_BITS 1024 | ||
| 186 | |||
| 187 | #ifndef OPENSSL_RSA_SMALL_MODULUS_BITS | 167 | #ifndef OPENSSL_RSA_SMALL_MODULUS_BITS |
| 188 | # define OPENSSL_RSA_SMALL_MODULUS_BITS 3072 | 168 | # define OPENSSL_RSA_SMALL_MODULUS_BITS 3072 |
| 189 | #endif | 169 | #endif |
| @@ -238,11 +218,37 @@ struct rsa_st | |||
| 238 | #endif | 218 | #endif |
| 239 | 219 | ||
| 240 | 220 | ||
| 221 | #define EVP_PKEY_CTX_set_rsa_padding(ctx, pad) \ | ||
| 222 | EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, -1, EVP_PKEY_CTRL_RSA_PADDING, \ | ||
| 223 | pad, NULL) | ||
| 224 | |||
| 225 | #define EVP_PKEY_CTX_set_rsa_pss_saltlen(ctx, len) \ | ||
| 226 | EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, \ | ||
| 227 | (EVP_PKEY_OP_SIGN|EVP_PKEY_OP_VERIFY), \ | ||
| 228 | EVP_PKEY_CTRL_RSA_PSS_SALTLEN, \ | ||
| 229 | len, NULL) | ||
| 230 | |||
| 231 | #define EVP_PKEY_CTX_set_rsa_keygen_bits(ctx, bits) \ | ||
| 232 | EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN, \ | ||
| 233 | EVP_PKEY_CTRL_RSA_KEYGEN_BITS, bits, NULL) | ||
| 234 | |||
| 235 | #define EVP_PKEY_CTX_set_rsa_keygen_pubexp(ctx, pubexp) \ | ||
| 236 | EVP_PKEY_CTX_ctrl(ctx, EVP_PKEY_RSA, EVP_PKEY_OP_KEYGEN, \ | ||
| 237 | EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP, 0, pubexp) | ||
| 238 | |||
| 239 | #define EVP_PKEY_CTRL_RSA_PADDING (EVP_PKEY_ALG_CTRL + 1) | ||
| 240 | #define EVP_PKEY_CTRL_RSA_PSS_SALTLEN (EVP_PKEY_ALG_CTRL + 2) | ||
| 241 | |||
| 242 | #define EVP_PKEY_CTRL_RSA_KEYGEN_BITS (EVP_PKEY_ALG_CTRL + 3) | ||
| 243 | #define EVP_PKEY_CTRL_RSA_KEYGEN_PUBEXP (EVP_PKEY_ALG_CTRL + 4) | ||
| 244 | |||
| 241 | #define RSA_PKCS1_PADDING 1 | 245 | #define RSA_PKCS1_PADDING 1 |
| 242 | #define RSA_SSLV23_PADDING 2 | 246 | #define RSA_SSLV23_PADDING 2 |
| 243 | #define RSA_NO_PADDING 3 | 247 | #define RSA_NO_PADDING 3 |
| 244 | #define RSA_PKCS1_OAEP_PADDING 4 | 248 | #define RSA_PKCS1_OAEP_PADDING 4 |
| 245 | #define RSA_X931_PADDING 5 | 249 | #define RSA_X931_PADDING 5 |
| 250 | /* EVP_PKEY_ only */ | ||
| 251 | #define RSA_PKCS1_PSS_PADDING 6 | ||
| 246 | 252 | ||
| 247 | #define RSA_PKCS1_PADDING_SIZE 11 | 253 | #define RSA_PKCS1_PADDING_SIZE 11 |
| 248 | 254 | ||
| @@ -261,11 +267,6 @@ RSA * RSA_generate_key(int bits, unsigned long e,void | |||
| 261 | 267 | ||
| 262 | /* New version */ | 268 | /* New version */ |
| 263 | int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); | 269 | int RSA_generate_key_ex(RSA *rsa, int bits, BIGNUM *e, BN_GENCB *cb); |
| 264 | int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1, BIGNUM *q2, | ||
| 265 | const BIGNUM *Xp1, const BIGNUM *Xp2, const BIGNUM *Xp, | ||
| 266 | const BIGNUM *Xq1, const BIGNUM *Xq2, const BIGNUM *Xq, | ||
| 267 | const BIGNUM *e, BN_GENCB *cb); | ||
| 268 | int RSA_X931_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e, BN_GENCB *cb); | ||
| 269 | 270 | ||
| 270 | int RSA_check_key(const RSA *); | 271 | int RSA_check_key(const RSA *); |
| 271 | /* next 4 return -1 on error */ | 272 | /* next 4 return -1 on error */ |
| @@ -283,11 +284,6 @@ int RSA_up_ref(RSA *r); | |||
| 283 | 284 | ||
| 284 | int RSA_flags(const RSA *r); | 285 | int RSA_flags(const RSA *r); |
| 285 | 286 | ||
| 286 | #ifdef OPENSSL_FIPS | ||
| 287 | RSA *FIPS_rsa_new(void); | ||
| 288 | void FIPS_rsa_free(RSA *r); | ||
| 289 | #endif | ||
| 290 | |||
| 291 | void RSA_set_default_method(const RSA_METHOD *meth); | 287 | void RSA_set_default_method(const RSA_METHOD *meth); |
| 292 | const RSA_METHOD *RSA_get_default_method(void); | 288 | const RSA_METHOD *RSA_get_default_method(void); |
| 293 | const RSA_METHOD *RSA_get_method(const RSA *rsa); | 289 | const RSA_METHOD *RSA_get_method(const RSA *rsa); |
| @@ -333,7 +329,7 @@ RSA *d2i_Netscape_RSA(RSA **a, const unsigned char **pp, long length, | |||
| 333 | int RSA_sign(int type, const unsigned char *m, unsigned int m_length, | 329 | int RSA_sign(int type, const unsigned char *m, unsigned int m_length, |
| 334 | unsigned char *sigret, unsigned int *siglen, RSA *rsa); | 330 | unsigned char *sigret, unsigned int *siglen, RSA *rsa); |
| 335 | int RSA_verify(int type, const unsigned char *m, unsigned int m_length, | 331 | int RSA_verify(int type, const unsigned char *m, unsigned int m_length, |
| 336 | unsigned char *sigbuf, unsigned int siglen, RSA *rsa); | 332 | const unsigned char *sigbuf, unsigned int siglen, RSA *rsa); |
| 337 | 333 | ||
| 338 | /* The following 2 function sign and verify a ASN1_OCTET_STRING | 334 | /* The following 2 function sign and verify a ASN1_OCTET_STRING |
| 339 | * object inside PKCS#1 padded RSA encryption */ | 335 | * object inside PKCS#1 padded RSA encryption */ |
| @@ -401,9 +397,15 @@ void ERR_load_RSA_strings(void); | |||
| 401 | /* Error codes for the RSA functions. */ | 397 | /* Error codes for the RSA functions. */ |
| 402 | 398 | ||
| 403 | /* Function codes. */ | 399 | /* Function codes. */ |
| 404 | #define RSA_F_FIPS_RSA_SIGN 140 | 400 | #define RSA_F_CHECK_PADDING_MD 140 |
| 405 | #define RSA_F_FIPS_RSA_VERIFY 141 | 401 | #define RSA_F_DO_RSA_PRINT 146 |
| 402 | #define RSA_F_INT_RSA_VERIFY 145 | ||
| 406 | #define RSA_F_MEMORY_LOCK 100 | 403 | #define RSA_F_MEMORY_LOCK 100 |
| 404 | #define RSA_F_OLD_RSA_PRIV_DECODE 147 | ||
| 405 | #define RSA_F_PKEY_RSA_CTRL 143 | ||
| 406 | #define RSA_F_PKEY_RSA_CTRL_STR 144 | ||
| 407 | #define RSA_F_PKEY_RSA_SIGN 142 | ||
| 408 | #define RSA_F_PKEY_RSA_VERIFYRECOVER 141 | ||
| 407 | #define RSA_F_RSA_BUILTIN_KEYGEN 129 | 409 | #define RSA_F_RSA_BUILTIN_KEYGEN 129 |
| 408 | #define RSA_F_RSA_CHECK_KEY 123 | 410 | #define RSA_F_RSA_CHECK_KEY 123 |
| 409 | #define RSA_F_RSA_EAY_PRIVATE_DECRYPT 101 | 411 | #define RSA_F_RSA_EAY_PRIVATE_DECRYPT 101 |
| @@ -434,11 +436,10 @@ void ERR_load_RSA_strings(void); | |||
| 434 | #define RSA_F_RSA_PADDING_CHECK_X931 128 | 436 | #define RSA_F_RSA_PADDING_CHECK_X931 128 |
| 435 | #define RSA_F_RSA_PRINT 115 | 437 | #define RSA_F_RSA_PRINT 115 |
| 436 | #define RSA_F_RSA_PRINT_FP 116 | 438 | #define RSA_F_RSA_PRINT_FP 116 |
| 437 | #define RSA_F_RSA_PRIVATE_ENCRYPT 137 | 439 | #define RSA_F_RSA_PRIV_DECODE 137 |
| 438 | #define RSA_F_RSA_PUBLIC_DECRYPT 138 | 440 | #define RSA_F_RSA_PRIV_ENCODE 138 |
| 441 | #define RSA_F_RSA_PUB_DECODE 139 | ||
| 439 | #define RSA_F_RSA_SETUP_BLINDING 136 | 442 | #define RSA_F_RSA_SETUP_BLINDING 136 |
| 440 | #define RSA_F_RSA_SET_DEFAULT_METHOD 139 | ||
| 441 | #define RSA_F_RSA_SET_METHOD 142 | ||
| 442 | #define RSA_F_RSA_SIGN 117 | 443 | #define RSA_F_RSA_SIGN 117 |
| 443 | #define RSA_F_RSA_SIGN_ASN1_OCTET_STRING 118 | 444 | #define RSA_F_RSA_SIGN_ASN1_OCTET_STRING 118 |
| 444 | #define RSA_F_RSA_VERIFY 119 | 445 | #define RSA_F_RSA_VERIFY 119 |
| @@ -464,20 +465,25 @@ void ERR_load_RSA_strings(void); | |||
| 464 | #define RSA_R_DMQ1_NOT_CONGRUENT_TO_D 125 | 465 | #define RSA_R_DMQ1_NOT_CONGRUENT_TO_D 125 |
| 465 | #define RSA_R_D_E_NOT_CONGRUENT_TO_1 123 | 466 | #define RSA_R_D_E_NOT_CONGRUENT_TO_1 123 |
| 466 | #define RSA_R_FIRST_OCTET_INVALID 133 | 467 | #define RSA_R_FIRST_OCTET_INVALID 133 |
| 468 | #define RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE 144 | ||
| 469 | #define RSA_R_INVALID_DIGEST_LENGTH 143 | ||
| 467 | #define RSA_R_INVALID_HEADER 137 | 470 | #define RSA_R_INVALID_HEADER 137 |
| 471 | #define RSA_R_INVALID_KEYBITS 145 | ||
| 468 | #define RSA_R_INVALID_MESSAGE_LENGTH 131 | 472 | #define RSA_R_INVALID_MESSAGE_LENGTH 131 |
| 469 | #define RSA_R_INVALID_PADDING 138 | 473 | #define RSA_R_INVALID_PADDING 138 |
| 474 | #define RSA_R_INVALID_PADDING_MODE 141 | ||
| 475 | #define RSA_R_INVALID_PSS_SALTLEN 146 | ||
| 470 | #define RSA_R_INVALID_TRAILER 139 | 476 | #define RSA_R_INVALID_TRAILER 139 |
| 477 | #define RSA_R_INVALID_X931_DIGEST 142 | ||
| 471 | #define RSA_R_IQMP_NOT_INVERSE_OF_Q 126 | 478 | #define RSA_R_IQMP_NOT_INVERSE_OF_Q 126 |
| 472 | #define RSA_R_KEY_SIZE_TOO_SMALL 120 | 479 | #define RSA_R_KEY_SIZE_TOO_SMALL 120 |
| 473 | #define RSA_R_LAST_OCTET_INVALID 134 | 480 | #define RSA_R_LAST_OCTET_INVALID 134 |
| 474 | #define RSA_R_MODULUS_TOO_LARGE 105 | 481 | #define RSA_R_MODULUS_TOO_LARGE 105 |
| 475 | #define RSA_R_NON_FIPS_METHOD 141 | ||
| 476 | #define RSA_R_NO_PUBLIC_EXPONENT 140 | 482 | #define RSA_R_NO_PUBLIC_EXPONENT 140 |
| 477 | #define RSA_R_NULL_BEFORE_BLOCK_MISSING 113 | 483 | #define RSA_R_NULL_BEFORE_BLOCK_MISSING 113 |
| 478 | #define RSA_R_N_DOES_NOT_EQUAL_P_Q 127 | 484 | #define RSA_R_N_DOES_NOT_EQUAL_P_Q 127 |
| 479 | #define RSA_R_OAEP_DECODING_ERROR 121 | 485 | #define RSA_R_OAEP_DECODING_ERROR 121 |
| 480 | #define RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE 142 | 486 | #define RSA_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE 148 |
| 481 | #define RSA_R_PADDING_CHECK_FAILED 114 | 487 | #define RSA_R_PADDING_CHECK_FAILED 114 |
| 482 | #define RSA_R_P_NOT_PRIME 128 | 488 | #define RSA_R_P_NOT_PRIME 128 |
| 483 | #define RSA_R_Q_NOT_PRIME 129 | 489 | #define RSA_R_Q_NOT_PRIME 129 |
| @@ -488,6 +494,7 @@ void ERR_load_RSA_strings(void); | |||
| 488 | #define RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 116 | 494 | #define RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 116 |
| 489 | #define RSA_R_UNKNOWN_ALGORITHM_TYPE 117 | 495 | #define RSA_R_UNKNOWN_ALGORITHM_TYPE 117 |
| 490 | #define RSA_R_UNKNOWN_PADDING_TYPE 118 | 496 | #define RSA_R_UNKNOWN_PADDING_TYPE 118 |
| 497 | #define RSA_R_VALUE_MISSING 147 | ||
| 491 | #define RSA_R_WRONG_SIGNATURE_LENGTH 119 | 498 | #define RSA_R_WRONG_SIGNATURE_LENGTH 119 |
| 492 | 499 | ||
| 493 | #ifdef __cplusplus | 500 | #ifdef __cplusplus |
diff --git a/src/lib/libcrypto/rsa/rsa_asn1.c b/src/lib/libcrypto/rsa/rsa_asn1.c index 6e8a803e81..4efca8cdc8 100644 --- a/src/lib/libcrypto/rsa/rsa_asn1.c +++ b/src/lib/libcrypto/rsa/rsa_asn1.c | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | * project 2000. | 3 | * project 2000. |
| 4 | */ | 4 | */ |
| 5 | /* ==================================================================== | 5 | /* ==================================================================== |
| 6 | * Copyright (c) 2000 The OpenSSL Project. All rights reserved. | 6 | * Copyright (c) 2000-2005 The OpenSSL Project. All rights reserved. |
| 7 | * | 7 | * |
| 8 | * Redistribution and use in source and binary forms, with or without | 8 | * Redistribution and use in source and binary forms, with or without |
| 9 | * modification, are permitted provided that the following conditions | 9 | * modification, are permitted provided that the following conditions |
| @@ -62,19 +62,9 @@ | |||
| 62 | #include <openssl/rsa.h> | 62 | #include <openssl/rsa.h> |
| 63 | #include <openssl/asn1t.h> | 63 | #include <openssl/asn1t.h> |
| 64 | 64 | ||
| 65 | static ASN1_METHOD method={ | ||
| 66 | (I2D_OF(void)) i2d_RSAPrivateKey, | ||
| 67 | (D2I_OF(void)) d2i_RSAPrivateKey, | ||
| 68 | (void *(*)(void)) RSA_new, | ||
| 69 | (void (*)(void *)) RSA_free}; | ||
| 70 | |||
| 71 | ASN1_METHOD *RSAPrivateKey_asn1_meth(void) | ||
| 72 | { | ||
| 73 | return(&method); | ||
| 74 | } | ||
| 75 | |||
| 76 | /* Override the default free and new methods */ | 65 | /* Override the default free and new methods */ |
| 77 | static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it) | 66 | static int rsa_cb(int operation, ASN1_VALUE **pval, const ASN1_ITEM *it, |
| 67 | void *exarg) | ||
| 78 | { | 68 | { |
| 79 | if(operation == ASN1_OP_NEW_PRE) { | 69 | if(operation == ASN1_OP_NEW_PRE) { |
| 80 | *pval = (ASN1_VALUE *)RSA_new(); | 70 | *pval = (ASN1_VALUE *)RSA_new(); |
diff --git a/src/lib/libcrypto/rsa/rsa_eay.c b/src/lib/libcrypto/rsa/rsa_eay.c index 04ec789ee9..c5eaeeae6b 100644 --- a/src/lib/libcrypto/rsa/rsa_eay.c +++ b/src/lib/libcrypto/rsa/rsa_eay.c | |||
| @@ -115,7 +115,7 @@ | |||
| 115 | #include <openssl/rsa.h> | 115 | #include <openssl/rsa.h> |
| 116 | #include <openssl/rand.h> | 116 | #include <openssl/rand.h> |
| 117 | 117 | ||
| 118 | #if !defined(RSA_NULL) && !defined(OPENSSL_FIPS) | 118 | #ifndef RSA_NULL |
| 119 | 119 | ||
| 120 | static int RSA_eay_public_encrypt(int flen, const unsigned char *from, | 120 | static int RSA_eay_public_encrypt(int flen, const unsigned char *from, |
| 121 | unsigned char *to, RSA *rsa,int padding); | 121 | unsigned char *to, RSA *rsa,int padding); |
| @@ -256,6 +256,7 @@ static BN_BLINDING *rsa_get_blinding(RSA *rsa, int *local, BN_CTX *ctx) | |||
| 256 | { | 256 | { |
| 257 | BN_BLINDING *ret; | 257 | BN_BLINDING *ret; |
| 258 | int got_write_lock = 0; | 258 | int got_write_lock = 0; |
| 259 | CRYPTO_THREADID cur; | ||
| 259 | 260 | ||
| 260 | CRYPTO_r_lock(CRYPTO_LOCK_RSA); | 261 | CRYPTO_r_lock(CRYPTO_LOCK_RSA); |
| 261 | 262 | ||
| @@ -273,7 +274,8 @@ static BN_BLINDING *rsa_get_blinding(RSA *rsa, int *local, BN_CTX *ctx) | |||
| 273 | if (ret == NULL) | 274 | if (ret == NULL) |
| 274 | goto err; | 275 | goto err; |
| 275 | 276 | ||
| 276 | if (BN_BLINDING_get_thread_id(ret) == CRYPTO_thread_id()) | 277 | CRYPTO_THREADID_current(&cur); |
| 278 | if (!CRYPTO_THREADID_cmp(&cur, BN_BLINDING_thread_id(ret))) | ||
| 277 | { | 279 | { |
| 278 | /* rsa->blinding is ours! */ | 280 | /* rsa->blinding is ours! */ |
| 279 | 281 | ||
| @@ -353,28 +355,6 @@ static int RSA_eay_private_encrypt(int flen, const unsigned char *from, | |||
| 353 | int local_blinding = 0; | 355 | int local_blinding = 0; |
| 354 | BN_BLINDING *blinding = NULL; | 356 | BN_BLINDING *blinding = NULL; |
| 355 | 357 | ||
| 356 | if (BN_num_bits(rsa->n) > OPENSSL_RSA_MAX_MODULUS_BITS) | ||
| 357 | { | ||
| 358 | RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_MODULUS_TOO_LARGE); | ||
| 359 | return -1; | ||
| 360 | } | ||
| 361 | |||
| 362 | if (BN_ucmp(rsa->n, rsa->e) <= 0) | ||
| 363 | { | ||
| 364 | RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_BAD_E_VALUE); | ||
| 365 | return -1; | ||
| 366 | } | ||
| 367 | |||
| 368 | /* for large moduli, enforce exponent limit */ | ||
| 369 | if (BN_num_bits(rsa->n) > OPENSSL_RSA_SMALL_MODULUS_BITS) | ||
| 370 | { | ||
| 371 | if (BN_num_bits(rsa->e) > OPENSSL_RSA_MAX_PUBEXP_BITS) | ||
| 372 | { | ||
| 373 | RSAerr(RSA_F_RSA_EAY_PUBLIC_ENCRYPT, RSA_R_BAD_E_VALUE); | ||
| 374 | return -1; | ||
| 375 | } | ||
| 376 | } | ||
| 377 | |||
| 378 | if ((ctx=BN_CTX_new()) == NULL) goto err; | 358 | if ((ctx=BN_CTX_new()) == NULL) goto err; |
| 379 | BN_CTX_start(ctx); | 359 | BN_CTX_start(ctx); |
| 380 | f = BN_CTX_get(ctx); | 360 | f = BN_CTX_get(ctx); |
diff --git a/src/lib/libcrypto/rsa/rsa_eng.c b/src/lib/libcrypto/rsa/rsa_eng.c deleted file mode 100644 index 383a7045b2..0000000000 --- a/src/lib/libcrypto/rsa/rsa_eng.c +++ /dev/null | |||
| @@ -1,348 +0,0 @@ | |||
| 1 | /* crypto/rsa/rsa_lib.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include <openssl/crypto.h> | ||
| 61 | #include "cryptlib.h" | ||
| 62 | #include <openssl/lhash.h> | ||
| 63 | #include <openssl/bn.h> | ||
| 64 | #include <openssl/rsa.h> | ||
| 65 | #include <openssl/rand.h> | ||
| 66 | #ifndef OPENSSL_NO_ENGINE | ||
| 67 | #include <openssl/engine.h> | ||
| 68 | #endif | ||
| 69 | |||
| 70 | const char RSA_version[]="RSA" OPENSSL_VERSION_PTEXT; | ||
| 71 | |||
| 72 | static const RSA_METHOD *default_RSA_meth=NULL; | ||
| 73 | |||
| 74 | RSA *RSA_new(void) | ||
| 75 | { | ||
| 76 | RSA *r=RSA_new_method(NULL); | ||
| 77 | |||
| 78 | return r; | ||
| 79 | } | ||
| 80 | |||
| 81 | void RSA_set_default_method(const RSA_METHOD *meth) | ||
| 82 | { | ||
| 83 | #ifdef OPENSSL_FIPS | ||
| 84 | if (FIPS_mode() && !(meth->flags & RSA_FLAG_FIPS_METHOD)) | ||
| 85 | { | ||
| 86 | RSAerr(RSA_F_RSA_SET_DEFAULT_METHOD, RSA_R_NON_FIPS_METHOD); | ||
| 87 | return; | ||
| 88 | } | ||
| 89 | #endif | ||
| 90 | default_RSA_meth = meth; | ||
| 91 | } | ||
| 92 | |||
| 93 | const RSA_METHOD *RSA_get_default_method(void) | ||
| 94 | { | ||
| 95 | if (default_RSA_meth == NULL) | ||
| 96 | { | ||
| 97 | #ifdef RSA_NULL | ||
| 98 | default_RSA_meth=RSA_null_method(); | ||
| 99 | #else | ||
| 100 | #if 0 /* was: #ifdef RSAref */ | ||
| 101 | default_RSA_meth=RSA_PKCS1_RSAref(); | ||
| 102 | #else | ||
| 103 | default_RSA_meth=RSA_PKCS1_SSLeay(); | ||
| 104 | #endif | ||
| 105 | #endif | ||
| 106 | } | ||
| 107 | |||
| 108 | return default_RSA_meth; | ||
| 109 | } | ||
| 110 | |||
| 111 | const RSA_METHOD *RSA_get_method(const RSA *rsa) | ||
| 112 | { | ||
| 113 | return rsa->meth; | ||
| 114 | } | ||
| 115 | |||
| 116 | int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) | ||
| 117 | { | ||
| 118 | /* NB: The caller is specifically setting a method, so it's not up to us | ||
| 119 | * to deal with which ENGINE it comes from. */ | ||
| 120 | const RSA_METHOD *mtmp; | ||
| 121 | #ifdef OPENSSL_FIPS | ||
| 122 | if (FIPS_mode() && !(meth->flags & RSA_FLAG_FIPS_METHOD)) | ||
| 123 | { | ||
| 124 | RSAerr(RSA_F_RSA_SET_METHOD, RSA_R_NON_FIPS_METHOD); | ||
| 125 | return 0; | ||
| 126 | } | ||
| 127 | #endif | ||
| 128 | mtmp = rsa->meth; | ||
| 129 | if (mtmp->finish) mtmp->finish(rsa); | ||
| 130 | #ifndef OPENSSL_NO_ENGINE | ||
| 131 | if (rsa->engine) | ||
| 132 | { | ||
| 133 | ENGINE_finish(rsa->engine); | ||
| 134 | rsa->engine = NULL; | ||
| 135 | } | ||
| 136 | #endif | ||
| 137 | rsa->meth = meth; | ||
| 138 | if (meth->init) meth->init(rsa); | ||
| 139 | return 1; | ||
| 140 | } | ||
| 141 | |||
| 142 | RSA *RSA_new_method(ENGINE *engine) | ||
| 143 | { | ||
| 144 | RSA *ret; | ||
| 145 | |||
| 146 | ret=(RSA *)OPENSSL_malloc(sizeof(RSA)); | ||
| 147 | if (ret == NULL) | ||
| 148 | { | ||
| 149 | RSAerr(RSA_F_RSA_NEW_METHOD,ERR_R_MALLOC_FAILURE); | ||
| 150 | return NULL; | ||
| 151 | } | ||
| 152 | |||
| 153 | ret->meth = RSA_get_default_method(); | ||
| 154 | #ifndef OPENSSL_NO_ENGINE | ||
| 155 | if (engine) | ||
| 156 | { | ||
| 157 | if (!ENGINE_init(engine)) | ||
| 158 | { | ||
| 159 | RSAerr(RSA_F_RSA_NEW_METHOD, ERR_R_ENGINE_LIB); | ||
| 160 | OPENSSL_free(ret); | ||
| 161 | return NULL; | ||
| 162 | } | ||
| 163 | ret->engine = engine; | ||
| 164 | } | ||
| 165 | else | ||
| 166 | ret->engine = ENGINE_get_default_RSA(); | ||
| 167 | if(ret->engine) | ||
| 168 | { | ||
| 169 | ret->meth = ENGINE_get_RSA(ret->engine); | ||
| 170 | if(!ret->meth) | ||
| 171 | { | ||
| 172 | RSAerr(RSA_F_RSA_NEW_METHOD, | ||
| 173 | ERR_R_ENGINE_LIB); | ||
| 174 | ENGINE_finish(ret->engine); | ||
| 175 | OPENSSL_free(ret); | ||
| 176 | return NULL; | ||
| 177 | } | ||
| 178 | } | ||
| 179 | #endif | ||
| 180 | #ifdef OPENSSL_FIPS | ||
| 181 | if (FIPS_mode() && !(ret->meth->flags & RSA_FLAG_FIPS_METHOD)) | ||
| 182 | { | ||
| 183 | RSAerr(RSA_F_RSA_NEW_METHOD, RSA_R_NON_FIPS_METHOD); | ||
| 184 | #ifndef OPENSSL_NO_ENGINE | ||
| 185 | if (ret->engine) | ||
| 186 | ENGINE_finish(ret->engine); | ||
| 187 | #endif | ||
| 188 | OPENSSL_free(ret); | ||
| 189 | return NULL; | ||
| 190 | } | ||
| 191 | #endif | ||
| 192 | |||
| 193 | ret->pad=0; | ||
| 194 | ret->version=0; | ||
| 195 | ret->n=NULL; | ||
| 196 | ret->e=NULL; | ||
| 197 | ret->d=NULL; | ||
| 198 | ret->p=NULL; | ||
| 199 | ret->q=NULL; | ||
| 200 | ret->dmp1=NULL; | ||
| 201 | ret->dmq1=NULL; | ||
| 202 | ret->iqmp=NULL; | ||
| 203 | ret->references=1; | ||
| 204 | ret->_method_mod_n=NULL; | ||
| 205 | ret->_method_mod_p=NULL; | ||
| 206 | ret->_method_mod_q=NULL; | ||
| 207 | ret->blinding=NULL; | ||
| 208 | ret->mt_blinding=NULL; | ||
| 209 | ret->bignum_data=NULL; | ||
| 210 | ret->flags=ret->meth->flags; | ||
| 211 | CRYPTO_new_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data); | ||
| 212 | if ((ret->meth->init != NULL) && !ret->meth->init(ret)) | ||
| 213 | { | ||
| 214 | #ifndef OPENSSL_NO_ENGINE | ||
| 215 | if (ret->engine) | ||
| 216 | ENGINE_finish(ret->engine); | ||
| 217 | #endif | ||
| 218 | CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data); | ||
| 219 | OPENSSL_free(ret); | ||
| 220 | ret=NULL; | ||
| 221 | } | ||
| 222 | return(ret); | ||
| 223 | } | ||
| 224 | |||
| 225 | void RSA_free(RSA *r) | ||
| 226 | { | ||
| 227 | int i; | ||
| 228 | |||
| 229 | if (r == NULL) return; | ||
| 230 | |||
| 231 | i=CRYPTO_add(&r->references,-1,CRYPTO_LOCK_RSA); | ||
| 232 | #ifdef REF_PRINT | ||
| 233 | REF_PRINT("RSA",r); | ||
| 234 | #endif | ||
| 235 | if (i > 0) return; | ||
| 236 | #ifdef REF_CHECK | ||
| 237 | if (i < 0) | ||
| 238 | { | ||
| 239 | fprintf(stderr,"RSA_free, bad reference count\n"); | ||
| 240 | abort(); | ||
| 241 | } | ||
| 242 | #endif | ||
| 243 | |||
| 244 | if (r->meth->finish) | ||
| 245 | r->meth->finish(r); | ||
| 246 | #ifndef OPENSSL_NO_ENGINE | ||
| 247 | if (r->engine) | ||
| 248 | ENGINE_finish(r->engine); | ||
| 249 | #endif | ||
| 250 | |||
| 251 | CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, r, &r->ex_data); | ||
| 252 | |||
| 253 | if (r->n != NULL) BN_clear_free(r->n); | ||
| 254 | if (r->e != NULL) BN_clear_free(r->e); | ||
| 255 | if (r->d != NULL) BN_clear_free(r->d); | ||
| 256 | if (r->p != NULL) BN_clear_free(r->p); | ||
| 257 | if (r->q != NULL) BN_clear_free(r->q); | ||
| 258 | if (r->dmp1 != NULL) BN_clear_free(r->dmp1); | ||
| 259 | if (r->dmq1 != NULL) BN_clear_free(r->dmq1); | ||
| 260 | if (r->iqmp != NULL) BN_clear_free(r->iqmp); | ||
| 261 | if (r->blinding != NULL) BN_BLINDING_free(r->blinding); | ||
| 262 | if (r->mt_blinding != NULL) BN_BLINDING_free(r->mt_blinding); | ||
| 263 | if (r->bignum_data != NULL) OPENSSL_free_locked(r->bignum_data); | ||
| 264 | OPENSSL_free(r); | ||
| 265 | } | ||
| 266 | |||
| 267 | int RSA_up_ref(RSA *r) | ||
| 268 | { | ||
| 269 | int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_RSA); | ||
| 270 | #ifdef REF_PRINT | ||
| 271 | REF_PRINT("RSA",r); | ||
| 272 | #endif | ||
| 273 | #ifdef REF_CHECK | ||
| 274 | if (i < 2) | ||
| 275 | { | ||
| 276 | fprintf(stderr, "RSA_up_ref, bad reference count\n"); | ||
| 277 | abort(); | ||
| 278 | } | ||
| 279 | #endif | ||
| 280 | return ((i > 1) ? 1 : 0); | ||
| 281 | } | ||
| 282 | |||
| 283 | int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | ||
| 284 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) | ||
| 285 | { | ||
| 286 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_RSA, argl, argp, | ||
| 287 | new_func, dup_func, free_func); | ||
| 288 | } | ||
| 289 | |||
| 290 | int RSA_set_ex_data(RSA *r, int idx, void *arg) | ||
| 291 | { | ||
| 292 | return(CRYPTO_set_ex_data(&r->ex_data,idx,arg)); | ||
| 293 | } | ||
| 294 | |||
| 295 | void *RSA_get_ex_data(const RSA *r, int idx) | ||
| 296 | { | ||
| 297 | return(CRYPTO_get_ex_data(&r->ex_data,idx)); | ||
| 298 | } | ||
| 299 | |||
| 300 | int RSA_flags(const RSA *r) | ||
| 301 | { | ||
| 302 | return((r == NULL)?0:r->meth->flags); | ||
| 303 | } | ||
| 304 | |||
| 305 | int RSA_memory_lock(RSA *r) | ||
| 306 | { | ||
| 307 | int i,j,k,off; | ||
| 308 | char *p; | ||
| 309 | BIGNUM *bn,**t[6],*b; | ||
| 310 | BN_ULONG *ul; | ||
| 311 | |||
| 312 | if (r->d == NULL) return(1); | ||
| 313 | t[0]= &r->d; | ||
| 314 | t[1]= &r->p; | ||
| 315 | t[2]= &r->q; | ||
| 316 | t[3]= &r->dmp1; | ||
| 317 | t[4]= &r->dmq1; | ||
| 318 | t[5]= &r->iqmp; | ||
| 319 | k=sizeof(BIGNUM)*6; | ||
| 320 | off=k/sizeof(BN_ULONG)+1; | ||
| 321 | j=1; | ||
| 322 | for (i=0; i<6; i++) | ||
| 323 | j+= (*t[i])->top; | ||
| 324 | if ((p=OPENSSL_malloc_locked((off+j)*sizeof(BN_ULONG))) == NULL) | ||
| 325 | { | ||
| 326 | RSAerr(RSA_F_RSA_MEMORY_LOCK,ERR_R_MALLOC_FAILURE); | ||
| 327 | return(0); | ||
| 328 | } | ||
| 329 | bn=(BIGNUM *)p; | ||
| 330 | ul=(BN_ULONG *)&(p[off]); | ||
| 331 | for (i=0; i<6; i++) | ||
| 332 | { | ||
| 333 | b= *(t[i]); | ||
| 334 | *(t[i])= &(bn[i]); | ||
| 335 | memcpy((char *)&(bn[i]),(char *)b,sizeof(BIGNUM)); | ||
| 336 | bn[i].flags=BN_FLG_STATIC_DATA; | ||
| 337 | bn[i].d=ul; | ||
| 338 | memcpy((char *)ul,b->d,sizeof(BN_ULONG)*b->top); | ||
| 339 | ul+=b->top; | ||
| 340 | BN_clear_free(b); | ||
| 341 | } | ||
| 342 | |||
| 343 | /* I should fix this so it can still be done */ | ||
| 344 | r->flags&= ~(RSA_FLAG_CACHE_PRIVATE|RSA_FLAG_CACHE_PUBLIC); | ||
| 345 | |||
| 346 | r->bignum_data=p; | ||
| 347 | return(1); | ||
| 348 | } | ||
diff --git a/src/lib/libcrypto/rsa/rsa_err.c b/src/lib/libcrypto/rsa/rsa_err.c index 501f5ea389..cf9f1106b0 100644 --- a/src/lib/libcrypto/rsa/rsa_err.c +++ b/src/lib/libcrypto/rsa/rsa_err.c | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* crypto/rsa/rsa_err.c */ | 1 | /* crypto/rsa/rsa_err.c */ |
| 2 | /* ==================================================================== | 2 | /* ==================================================================== |
| 3 | * Copyright (c) 1999-2007 The OpenSSL Project. All rights reserved. | 3 | * Copyright (c) 1999-2008 The OpenSSL Project. All rights reserved. |
| 4 | * | 4 | * |
| 5 | * Redistribution and use in source and binary forms, with or without | 5 | * Redistribution and use in source and binary forms, with or without |
| 6 | * modification, are permitted provided that the following conditions | 6 | * modification, are permitted provided that the following conditions |
| @@ -70,9 +70,15 @@ | |||
| 70 | 70 | ||
| 71 | static ERR_STRING_DATA RSA_str_functs[]= | 71 | static ERR_STRING_DATA RSA_str_functs[]= |
| 72 | { | 72 | { |
| 73 | {ERR_FUNC(RSA_F_FIPS_RSA_SIGN), "FIPS_RSA_SIGN"}, | 73 | {ERR_FUNC(RSA_F_CHECK_PADDING_MD), "CHECK_PADDING_MD"}, |
| 74 | {ERR_FUNC(RSA_F_FIPS_RSA_VERIFY), "FIPS_RSA_VERIFY"}, | 74 | {ERR_FUNC(RSA_F_DO_RSA_PRINT), "DO_RSA_PRINT"}, |
| 75 | {ERR_FUNC(RSA_F_INT_RSA_VERIFY), "INT_RSA_VERIFY"}, | ||
| 75 | {ERR_FUNC(RSA_F_MEMORY_LOCK), "MEMORY_LOCK"}, | 76 | {ERR_FUNC(RSA_F_MEMORY_LOCK), "MEMORY_LOCK"}, |
| 77 | {ERR_FUNC(RSA_F_OLD_RSA_PRIV_DECODE), "OLD_RSA_PRIV_DECODE"}, | ||
| 78 | {ERR_FUNC(RSA_F_PKEY_RSA_CTRL), "PKEY_RSA_CTRL"}, | ||
| 79 | {ERR_FUNC(RSA_F_PKEY_RSA_CTRL_STR), "PKEY_RSA_CTRL_STR"}, | ||
| 80 | {ERR_FUNC(RSA_F_PKEY_RSA_SIGN), "PKEY_RSA_SIGN"}, | ||
| 81 | {ERR_FUNC(RSA_F_PKEY_RSA_VERIFYRECOVER), "PKEY_RSA_VERIFYRECOVER"}, | ||
| 76 | {ERR_FUNC(RSA_F_RSA_BUILTIN_KEYGEN), "RSA_BUILTIN_KEYGEN"}, | 82 | {ERR_FUNC(RSA_F_RSA_BUILTIN_KEYGEN), "RSA_BUILTIN_KEYGEN"}, |
| 77 | {ERR_FUNC(RSA_F_RSA_CHECK_KEY), "RSA_check_key"}, | 83 | {ERR_FUNC(RSA_F_RSA_CHECK_KEY), "RSA_check_key"}, |
| 78 | {ERR_FUNC(RSA_F_RSA_EAY_PRIVATE_DECRYPT), "RSA_EAY_PRIVATE_DECRYPT"}, | 84 | {ERR_FUNC(RSA_F_RSA_EAY_PRIVATE_DECRYPT), "RSA_EAY_PRIVATE_DECRYPT"}, |
| @@ -103,11 +109,10 @@ static ERR_STRING_DATA RSA_str_functs[]= | |||
| 103 | {ERR_FUNC(RSA_F_RSA_PADDING_CHECK_X931), "RSA_padding_check_X931"}, | 109 | {ERR_FUNC(RSA_F_RSA_PADDING_CHECK_X931), "RSA_padding_check_X931"}, |
| 104 | {ERR_FUNC(RSA_F_RSA_PRINT), "RSA_print"}, | 110 | {ERR_FUNC(RSA_F_RSA_PRINT), "RSA_print"}, |
| 105 | {ERR_FUNC(RSA_F_RSA_PRINT_FP), "RSA_print_fp"}, | 111 | {ERR_FUNC(RSA_F_RSA_PRINT_FP), "RSA_print_fp"}, |
| 106 | {ERR_FUNC(RSA_F_RSA_PRIVATE_ENCRYPT), "RSA_private_encrypt"}, | 112 | {ERR_FUNC(RSA_F_RSA_PRIV_DECODE), "RSA_PRIV_DECODE"}, |
| 107 | {ERR_FUNC(RSA_F_RSA_PUBLIC_DECRYPT), "RSA_public_decrypt"}, | 113 | {ERR_FUNC(RSA_F_RSA_PRIV_ENCODE), "RSA_PRIV_ENCODE"}, |
| 114 | {ERR_FUNC(RSA_F_RSA_PUB_DECODE), "RSA_PUB_DECODE"}, | ||
| 108 | {ERR_FUNC(RSA_F_RSA_SETUP_BLINDING), "RSA_setup_blinding"}, | 115 | {ERR_FUNC(RSA_F_RSA_SETUP_BLINDING), "RSA_setup_blinding"}, |
| 109 | {ERR_FUNC(RSA_F_RSA_SET_DEFAULT_METHOD), "RSA_set_default_method"}, | ||
| 110 | {ERR_FUNC(RSA_F_RSA_SET_METHOD), "RSA_set_method"}, | ||
| 111 | {ERR_FUNC(RSA_F_RSA_SIGN), "RSA_sign"}, | 116 | {ERR_FUNC(RSA_F_RSA_SIGN), "RSA_sign"}, |
| 112 | {ERR_FUNC(RSA_F_RSA_SIGN_ASN1_OCTET_STRING), "RSA_sign_ASN1_OCTET_STRING"}, | 117 | {ERR_FUNC(RSA_F_RSA_SIGN_ASN1_OCTET_STRING), "RSA_sign_ASN1_OCTET_STRING"}, |
| 113 | {ERR_FUNC(RSA_F_RSA_VERIFY), "RSA_verify"}, | 118 | {ERR_FUNC(RSA_F_RSA_VERIFY), "RSA_verify"}, |
| @@ -136,20 +141,25 @@ static ERR_STRING_DATA RSA_str_reasons[]= | |||
| 136 | {ERR_REASON(RSA_R_DMQ1_NOT_CONGRUENT_TO_D),"dmq1 not congruent to d"}, | 141 | {ERR_REASON(RSA_R_DMQ1_NOT_CONGRUENT_TO_D),"dmq1 not congruent to d"}, |
| 137 | {ERR_REASON(RSA_R_D_E_NOT_CONGRUENT_TO_1),"d e not congruent to 1"}, | 142 | {ERR_REASON(RSA_R_D_E_NOT_CONGRUENT_TO_1),"d e not congruent to 1"}, |
| 138 | {ERR_REASON(RSA_R_FIRST_OCTET_INVALID) ,"first octet invalid"}, | 143 | {ERR_REASON(RSA_R_FIRST_OCTET_INVALID) ,"first octet invalid"}, |
| 144 | {ERR_REASON(RSA_R_ILLEGAL_OR_UNSUPPORTED_PADDING_MODE),"illegal or unsupported padding mode"}, | ||
| 145 | {ERR_REASON(RSA_R_INVALID_DIGEST_LENGTH) ,"invalid digest length"}, | ||
| 139 | {ERR_REASON(RSA_R_INVALID_HEADER) ,"invalid header"}, | 146 | {ERR_REASON(RSA_R_INVALID_HEADER) ,"invalid header"}, |
| 147 | {ERR_REASON(RSA_R_INVALID_KEYBITS) ,"invalid keybits"}, | ||
| 140 | {ERR_REASON(RSA_R_INVALID_MESSAGE_LENGTH),"invalid message length"}, | 148 | {ERR_REASON(RSA_R_INVALID_MESSAGE_LENGTH),"invalid message length"}, |
| 141 | {ERR_REASON(RSA_R_INVALID_PADDING) ,"invalid padding"}, | 149 | {ERR_REASON(RSA_R_INVALID_PADDING) ,"invalid padding"}, |
| 150 | {ERR_REASON(RSA_R_INVALID_PADDING_MODE) ,"invalid padding mode"}, | ||
| 151 | {ERR_REASON(RSA_R_INVALID_PSS_SALTLEN) ,"invalid pss saltlen"}, | ||
| 142 | {ERR_REASON(RSA_R_INVALID_TRAILER) ,"invalid trailer"}, | 152 | {ERR_REASON(RSA_R_INVALID_TRAILER) ,"invalid trailer"}, |
| 153 | {ERR_REASON(RSA_R_INVALID_X931_DIGEST) ,"invalid x931 digest"}, | ||
| 143 | {ERR_REASON(RSA_R_IQMP_NOT_INVERSE_OF_Q) ,"iqmp not inverse of q"}, | 154 | {ERR_REASON(RSA_R_IQMP_NOT_INVERSE_OF_Q) ,"iqmp not inverse of q"}, |
| 144 | {ERR_REASON(RSA_R_KEY_SIZE_TOO_SMALL) ,"key size too small"}, | 155 | {ERR_REASON(RSA_R_KEY_SIZE_TOO_SMALL) ,"key size too small"}, |
| 145 | {ERR_REASON(RSA_R_LAST_OCTET_INVALID) ,"last octet invalid"}, | 156 | {ERR_REASON(RSA_R_LAST_OCTET_INVALID) ,"last octet invalid"}, |
| 146 | {ERR_REASON(RSA_R_MODULUS_TOO_LARGE) ,"modulus too large"}, | 157 | {ERR_REASON(RSA_R_MODULUS_TOO_LARGE) ,"modulus too large"}, |
| 147 | {ERR_REASON(RSA_R_NON_FIPS_METHOD) ,"non fips method"}, | ||
| 148 | {ERR_REASON(RSA_R_NO_PUBLIC_EXPONENT) ,"no public exponent"}, | 158 | {ERR_REASON(RSA_R_NO_PUBLIC_EXPONENT) ,"no public exponent"}, |
| 149 | {ERR_REASON(RSA_R_NULL_BEFORE_BLOCK_MISSING),"null before block missing"}, | 159 | {ERR_REASON(RSA_R_NULL_BEFORE_BLOCK_MISSING),"null before block missing"}, |
| 150 | {ERR_REASON(RSA_R_N_DOES_NOT_EQUAL_P_Q) ,"n does not equal p q"}, | 160 | {ERR_REASON(RSA_R_N_DOES_NOT_EQUAL_P_Q) ,"n does not equal p q"}, |
| 151 | {ERR_REASON(RSA_R_OAEP_DECODING_ERROR) ,"oaep decoding error"}, | 161 | {ERR_REASON(RSA_R_OAEP_DECODING_ERROR) ,"oaep decoding error"}, |
| 152 | {ERR_REASON(RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE),"operation not allowed in fips mode"}, | 162 | {ERR_REASON(RSA_R_OPERATION_NOT_SUPPORTED_FOR_THIS_KEYTYPE),"operation not supported for this keytype"}, |
| 153 | {ERR_REASON(RSA_R_PADDING_CHECK_FAILED) ,"padding check failed"}, | 163 | {ERR_REASON(RSA_R_PADDING_CHECK_FAILED) ,"padding check failed"}, |
| 154 | {ERR_REASON(RSA_R_P_NOT_PRIME) ,"p not prime"}, | 164 | {ERR_REASON(RSA_R_P_NOT_PRIME) ,"p not prime"}, |
| 155 | {ERR_REASON(RSA_R_Q_NOT_PRIME) ,"q not prime"}, | 165 | {ERR_REASON(RSA_R_Q_NOT_PRIME) ,"q not prime"}, |
| @@ -160,6 +170,7 @@ static ERR_STRING_DATA RSA_str_reasons[]= | |||
| 160 | {ERR_REASON(RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD),"the asn1 object identifier is not known for this md"}, | 170 | {ERR_REASON(RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD),"the asn1 object identifier is not known for this md"}, |
| 161 | {ERR_REASON(RSA_R_UNKNOWN_ALGORITHM_TYPE),"unknown algorithm type"}, | 171 | {ERR_REASON(RSA_R_UNKNOWN_ALGORITHM_TYPE),"unknown algorithm type"}, |
| 162 | {ERR_REASON(RSA_R_UNKNOWN_PADDING_TYPE) ,"unknown padding type"}, | 172 | {ERR_REASON(RSA_R_UNKNOWN_PADDING_TYPE) ,"unknown padding type"}, |
| 173 | {ERR_REASON(RSA_R_VALUE_MISSING) ,"value missing"}, | ||
| 163 | {ERR_REASON(RSA_R_WRONG_SIGNATURE_LENGTH),"wrong signature length"}, | 174 | {ERR_REASON(RSA_R_WRONG_SIGNATURE_LENGTH),"wrong signature length"}, |
| 164 | {0,NULL} | 175 | {0,NULL} |
| 165 | }; | 176 | }; |
diff --git a/src/lib/libcrypto/rsa/rsa_gen.c b/src/lib/libcrypto/rsa/rsa_gen.c index 41278f83c6..767f7ab682 100644 --- a/src/lib/libcrypto/rsa/rsa_gen.c +++ b/src/lib/libcrypto/rsa/rsa_gen.c | |||
| @@ -68,8 +68,6 @@ | |||
| 68 | #include <openssl/bn.h> | 68 | #include <openssl/bn.h> |
| 69 | #include <openssl/rsa.h> | 69 | #include <openssl/rsa.h> |
| 70 | 70 | ||
| 71 | #ifndef OPENSSL_FIPS | ||
| 72 | |||
| 73 | static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb); | 71 | static int rsa_builtin_keygen(RSA *rsa, int bits, BIGNUM *e_value, BN_GENCB *cb); |
| 74 | 72 | ||
| 75 | /* NB: this wrapper would normally be placed in rsa_lib.c and the static | 73 | /* NB: this wrapper would normally be placed in rsa_lib.c and the static |
| @@ -219,4 +217,3 @@ err: | |||
| 219 | return ok; | 217 | return ok; |
| 220 | } | 218 | } |
| 221 | 219 | ||
| 222 | #endif | ||
diff --git a/src/lib/libcrypto/rsa/rsa_lib.c b/src/lib/libcrypto/rsa/rsa_lib.c index 5714841f4c..de45088d76 100644 --- a/src/lib/libcrypto/rsa/rsa_lib.c +++ b/src/lib/libcrypto/rsa/rsa_lib.c | |||
| @@ -67,6 +67,224 @@ | |||
| 67 | #include <openssl/engine.h> | 67 | #include <openssl/engine.h> |
| 68 | #endif | 68 | #endif |
| 69 | 69 | ||
| 70 | const char RSA_version[]="RSA" OPENSSL_VERSION_PTEXT; | ||
| 71 | |||
| 72 | static const RSA_METHOD *default_RSA_meth=NULL; | ||
| 73 | |||
| 74 | RSA *RSA_new(void) | ||
| 75 | { | ||
| 76 | RSA *r=RSA_new_method(NULL); | ||
| 77 | |||
| 78 | return r; | ||
| 79 | } | ||
| 80 | |||
| 81 | void RSA_set_default_method(const RSA_METHOD *meth) | ||
| 82 | { | ||
| 83 | default_RSA_meth = meth; | ||
| 84 | } | ||
| 85 | |||
| 86 | const RSA_METHOD *RSA_get_default_method(void) | ||
| 87 | { | ||
| 88 | if (default_RSA_meth == NULL) | ||
| 89 | { | ||
| 90 | #ifdef RSA_NULL | ||
| 91 | default_RSA_meth=RSA_null_method(); | ||
| 92 | #else | ||
| 93 | #if 0 /* was: #ifdef RSAref */ | ||
| 94 | default_RSA_meth=RSA_PKCS1_RSAref(); | ||
| 95 | #else | ||
| 96 | default_RSA_meth=RSA_PKCS1_SSLeay(); | ||
| 97 | #endif | ||
| 98 | #endif | ||
| 99 | } | ||
| 100 | |||
| 101 | return default_RSA_meth; | ||
| 102 | } | ||
| 103 | |||
| 104 | const RSA_METHOD *RSA_get_method(const RSA *rsa) | ||
| 105 | { | ||
| 106 | return rsa->meth; | ||
| 107 | } | ||
| 108 | |||
| 109 | int RSA_set_method(RSA *rsa, const RSA_METHOD *meth) | ||
| 110 | { | ||
| 111 | /* NB: The caller is specifically setting a method, so it's not up to us | ||
| 112 | * to deal with which ENGINE it comes from. */ | ||
| 113 | const RSA_METHOD *mtmp; | ||
| 114 | mtmp = rsa->meth; | ||
| 115 | if (mtmp->finish) mtmp->finish(rsa); | ||
| 116 | #ifndef OPENSSL_NO_ENGINE | ||
| 117 | if (rsa->engine) | ||
| 118 | { | ||
| 119 | ENGINE_finish(rsa->engine); | ||
| 120 | rsa->engine = NULL; | ||
| 121 | } | ||
| 122 | #endif | ||
| 123 | rsa->meth = meth; | ||
| 124 | if (meth->init) meth->init(rsa); | ||
| 125 | return 1; | ||
| 126 | } | ||
| 127 | |||
| 128 | RSA *RSA_new_method(ENGINE *engine) | ||
| 129 | { | ||
| 130 | RSA *ret; | ||
| 131 | |||
| 132 | ret=(RSA *)OPENSSL_malloc(sizeof(RSA)); | ||
| 133 | if (ret == NULL) | ||
| 134 | { | ||
| 135 | RSAerr(RSA_F_RSA_NEW_METHOD,ERR_R_MALLOC_FAILURE); | ||
| 136 | return NULL; | ||
| 137 | } | ||
| 138 | |||
| 139 | ret->meth = RSA_get_default_method(); | ||
| 140 | #ifndef OPENSSL_NO_ENGINE | ||
| 141 | if (engine) | ||
| 142 | { | ||
| 143 | if (!ENGINE_init(engine)) | ||
| 144 | { | ||
| 145 | RSAerr(RSA_F_RSA_NEW_METHOD, ERR_R_ENGINE_LIB); | ||
| 146 | OPENSSL_free(ret); | ||
| 147 | return NULL; | ||
| 148 | } | ||
| 149 | ret->engine = engine; | ||
| 150 | } | ||
| 151 | else | ||
| 152 | ret->engine = ENGINE_get_default_RSA(); | ||
| 153 | if(ret->engine) | ||
| 154 | { | ||
| 155 | ret->meth = ENGINE_get_RSA(ret->engine); | ||
| 156 | if(!ret->meth) | ||
| 157 | { | ||
| 158 | RSAerr(RSA_F_RSA_NEW_METHOD, | ||
| 159 | ERR_R_ENGINE_LIB); | ||
| 160 | ENGINE_finish(ret->engine); | ||
| 161 | OPENSSL_free(ret); | ||
| 162 | return NULL; | ||
| 163 | } | ||
| 164 | } | ||
| 165 | #endif | ||
| 166 | |||
| 167 | ret->pad=0; | ||
| 168 | ret->version=0; | ||
| 169 | ret->n=NULL; | ||
| 170 | ret->e=NULL; | ||
| 171 | ret->d=NULL; | ||
| 172 | ret->p=NULL; | ||
| 173 | ret->q=NULL; | ||
| 174 | ret->dmp1=NULL; | ||
| 175 | ret->dmq1=NULL; | ||
| 176 | ret->iqmp=NULL; | ||
| 177 | ret->references=1; | ||
| 178 | ret->_method_mod_n=NULL; | ||
| 179 | ret->_method_mod_p=NULL; | ||
| 180 | ret->_method_mod_q=NULL; | ||
| 181 | ret->blinding=NULL; | ||
| 182 | ret->mt_blinding=NULL; | ||
| 183 | ret->bignum_data=NULL; | ||
| 184 | ret->flags=ret->meth->flags; | ||
| 185 | if (!CRYPTO_new_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data)) | ||
| 186 | { | ||
| 187 | #ifndef OPENSSL_NO_ENGINE | ||
| 188 | if (ret->engine) | ||
| 189 | ENGINE_finish(ret->engine); | ||
| 190 | #endif | ||
| 191 | OPENSSL_free(ret); | ||
| 192 | return(NULL); | ||
| 193 | } | ||
| 194 | |||
| 195 | if ((ret->meth->init != NULL) && !ret->meth->init(ret)) | ||
| 196 | { | ||
| 197 | #ifndef OPENSSL_NO_ENGINE | ||
| 198 | if (ret->engine) | ||
| 199 | ENGINE_finish(ret->engine); | ||
| 200 | #endif | ||
| 201 | CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, ret, &ret->ex_data); | ||
| 202 | OPENSSL_free(ret); | ||
| 203 | ret=NULL; | ||
| 204 | } | ||
| 205 | return(ret); | ||
| 206 | } | ||
| 207 | |||
| 208 | void RSA_free(RSA *r) | ||
| 209 | { | ||
| 210 | int i; | ||
| 211 | |||
| 212 | if (r == NULL) return; | ||
| 213 | |||
| 214 | i=CRYPTO_add(&r->references,-1,CRYPTO_LOCK_RSA); | ||
| 215 | #ifdef REF_PRINT | ||
| 216 | REF_PRINT("RSA",r); | ||
| 217 | #endif | ||
| 218 | if (i > 0) return; | ||
| 219 | #ifdef REF_CHECK | ||
| 220 | if (i < 0) | ||
| 221 | { | ||
| 222 | fprintf(stderr,"RSA_free, bad reference count\n"); | ||
| 223 | abort(); | ||
| 224 | } | ||
| 225 | #endif | ||
| 226 | |||
| 227 | if (r->meth->finish) | ||
| 228 | r->meth->finish(r); | ||
| 229 | #ifndef OPENSSL_NO_ENGINE | ||
| 230 | if (r->engine) | ||
| 231 | ENGINE_finish(r->engine); | ||
| 232 | #endif | ||
| 233 | |||
| 234 | CRYPTO_free_ex_data(CRYPTO_EX_INDEX_RSA, r, &r->ex_data); | ||
| 235 | |||
| 236 | if (r->n != NULL) BN_clear_free(r->n); | ||
| 237 | if (r->e != NULL) BN_clear_free(r->e); | ||
| 238 | if (r->d != NULL) BN_clear_free(r->d); | ||
| 239 | if (r->p != NULL) BN_clear_free(r->p); | ||
| 240 | if (r->q != NULL) BN_clear_free(r->q); | ||
| 241 | if (r->dmp1 != NULL) BN_clear_free(r->dmp1); | ||
| 242 | if (r->dmq1 != NULL) BN_clear_free(r->dmq1); | ||
| 243 | if (r->iqmp != NULL) BN_clear_free(r->iqmp); | ||
| 244 | if (r->blinding != NULL) BN_BLINDING_free(r->blinding); | ||
| 245 | if (r->mt_blinding != NULL) BN_BLINDING_free(r->mt_blinding); | ||
| 246 | if (r->bignum_data != NULL) OPENSSL_free_locked(r->bignum_data); | ||
| 247 | OPENSSL_free(r); | ||
| 248 | } | ||
| 249 | |||
| 250 | int RSA_up_ref(RSA *r) | ||
| 251 | { | ||
| 252 | int i = CRYPTO_add(&r->references, 1, CRYPTO_LOCK_RSA); | ||
| 253 | #ifdef REF_PRINT | ||
| 254 | REF_PRINT("RSA",r); | ||
| 255 | #endif | ||
| 256 | #ifdef REF_CHECK | ||
| 257 | if (i < 2) | ||
| 258 | { | ||
| 259 | fprintf(stderr, "RSA_up_ref, bad reference count\n"); | ||
| 260 | abort(); | ||
| 261 | } | ||
| 262 | #endif | ||
| 263 | return ((i > 1) ? 1 : 0); | ||
| 264 | } | ||
| 265 | |||
| 266 | int RSA_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func, | ||
| 267 | CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func) | ||
| 268 | { | ||
| 269 | return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_RSA, argl, argp, | ||
| 270 | new_func, dup_func, free_func); | ||
| 271 | } | ||
| 272 | |||
| 273 | int RSA_set_ex_data(RSA *r, int idx, void *arg) | ||
| 274 | { | ||
| 275 | return(CRYPTO_set_ex_data(&r->ex_data,idx,arg)); | ||
| 276 | } | ||
| 277 | |||
| 278 | void *RSA_get_ex_data(const RSA *r, int idx) | ||
| 279 | { | ||
| 280 | return(CRYPTO_get_ex_data(&r->ex_data,idx)); | ||
| 281 | } | ||
| 282 | |||
| 283 | int RSA_size(const RSA *r) | ||
| 284 | { | ||
| 285 | return(BN_num_bytes(r->n)); | ||
| 286 | } | ||
| 287 | |||
| 70 | int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, | 288 | int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, |
| 71 | RSA *rsa, int padding) | 289 | RSA *rsa, int padding) |
| 72 | { | 290 | { |
| @@ -76,13 +294,6 @@ int RSA_public_encrypt(int flen, const unsigned char *from, unsigned char *to, | |||
| 76 | int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, | 294 | int RSA_private_encrypt(int flen, const unsigned char *from, unsigned char *to, |
| 77 | RSA *rsa, int padding) | 295 | RSA *rsa, int padding) |
| 78 | { | 296 | { |
| 79 | #ifdef OPENSSL_FIPS | ||
| 80 | if(FIPS_mode() && !(rsa->flags & RSA_FLAG_NON_FIPS_ALLOW)) | ||
| 81 | { | ||
| 82 | RSAerr(RSA_F_RSA_PRIVATE_ENCRYPT, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE); | ||
| 83 | return 0; | ||
| 84 | } | ||
| 85 | #endif | ||
| 86 | return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding)); | 297 | return(rsa->meth->rsa_priv_enc(flen, from, to, rsa, padding)); |
| 87 | } | 298 | } |
| 88 | 299 | ||
| @@ -95,19 +306,12 @@ int RSA_private_decrypt(int flen, const unsigned char *from, unsigned char *to, | |||
| 95 | int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, | 306 | int RSA_public_decrypt(int flen, const unsigned char *from, unsigned char *to, |
| 96 | RSA *rsa, int padding) | 307 | RSA *rsa, int padding) |
| 97 | { | 308 | { |
| 98 | #ifdef OPENSSL_FIPS | ||
| 99 | if(FIPS_mode() && !(rsa->flags & RSA_FLAG_NON_FIPS_ALLOW)) | ||
| 100 | { | ||
| 101 | RSAerr(RSA_F_RSA_PUBLIC_DECRYPT, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE); | ||
| 102 | return 0; | ||
| 103 | } | ||
| 104 | #endif | ||
| 105 | return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding)); | 309 | return(rsa->meth->rsa_pub_dec(flen, from, to, rsa, padding)); |
| 106 | } | 310 | } |
| 107 | 311 | ||
| 108 | int RSA_size(const RSA *r) | 312 | int RSA_flags(const RSA *r) |
| 109 | { | 313 | { |
| 110 | return(BN_num_bytes(r->n)); | 314 | return((r == NULL)?0:r->meth->flags); |
| 111 | } | 315 | } |
| 112 | 316 | ||
| 113 | void RSA_blinding_off(RSA *rsa) | 317 | void RSA_blinding_off(RSA *rsa) |
| @@ -222,7 +426,7 @@ BN_BLINDING *RSA_setup_blinding(RSA *rsa, BN_CTX *in_ctx) | |||
| 222 | RSAerr(RSA_F_RSA_SETUP_BLINDING, ERR_R_BN_LIB); | 426 | RSAerr(RSA_F_RSA_SETUP_BLINDING, ERR_R_BN_LIB); |
| 223 | goto err; | 427 | goto err; |
| 224 | } | 428 | } |
| 225 | BN_BLINDING_set_thread_id(ret, CRYPTO_thread_id()); | 429 | CRYPTO_THREADID_current(BN_BLINDING_thread_id(ret)); |
| 226 | err: | 430 | err: |
| 227 | BN_CTX_end(ctx); | 431 | BN_CTX_end(ctx); |
| 228 | if (in_ctx == NULL) | 432 | if (in_ctx == NULL) |
| @@ -232,3 +436,48 @@ err: | |||
| 232 | 436 | ||
| 233 | return ret; | 437 | return ret; |
| 234 | } | 438 | } |
| 439 | |||
| 440 | int RSA_memory_lock(RSA *r) | ||
| 441 | { | ||
| 442 | int i,j,k,off; | ||
| 443 | char *p; | ||
| 444 | BIGNUM *bn,**t[6],*b; | ||
| 445 | BN_ULONG *ul; | ||
| 446 | |||
| 447 | if (r->d == NULL) return(1); | ||
| 448 | t[0]= &r->d; | ||
| 449 | t[1]= &r->p; | ||
| 450 | t[2]= &r->q; | ||
| 451 | t[3]= &r->dmp1; | ||
| 452 | t[4]= &r->dmq1; | ||
| 453 | t[5]= &r->iqmp; | ||
| 454 | k=sizeof(BIGNUM)*6; | ||
| 455 | off=k/sizeof(BN_ULONG)+1; | ||
| 456 | j=1; | ||
| 457 | for (i=0; i<6; i++) | ||
| 458 | j+= (*t[i])->top; | ||
| 459 | if ((p=OPENSSL_malloc_locked((off+j)*sizeof(BN_ULONG))) == NULL) | ||
| 460 | { | ||
| 461 | RSAerr(RSA_F_RSA_MEMORY_LOCK,ERR_R_MALLOC_FAILURE); | ||
| 462 | return(0); | ||
| 463 | } | ||
| 464 | bn=(BIGNUM *)p; | ||
| 465 | ul=(BN_ULONG *)&(p[off]); | ||
| 466 | for (i=0; i<6; i++) | ||
| 467 | { | ||
| 468 | b= *(t[i]); | ||
| 469 | *(t[i])= &(bn[i]); | ||
| 470 | memcpy((char *)&(bn[i]),(char *)b,sizeof(BIGNUM)); | ||
| 471 | bn[i].flags=BN_FLG_STATIC_DATA; | ||
| 472 | bn[i].d=ul; | ||
| 473 | memcpy((char *)ul,b->d,sizeof(BN_ULONG)*b->top); | ||
| 474 | ul+=b->top; | ||
| 475 | BN_clear_free(b); | ||
| 476 | } | ||
| 477 | |||
| 478 | /* I should fix this so it can still be done */ | ||
| 479 | r->flags&= ~(RSA_FLAG_CACHE_PRIVATE|RSA_FLAG_CACHE_PUBLIC); | ||
| 480 | |||
| 481 | r->bignum_data=p; | ||
| 482 | return(1); | ||
| 483 | } | ||
diff --git a/src/lib/libcrypto/rsa/rsa_oaep.c b/src/lib/libcrypto/rsa/rsa_oaep.c index 4d30c9d2d3..e238d10e5c 100644 --- a/src/lib/libcrypto/rsa/rsa_oaep.c +++ b/src/lib/libcrypto/rsa/rsa_oaep.c | |||
| @@ -28,7 +28,7 @@ | |||
| 28 | #include <openssl/rand.h> | 28 | #include <openssl/rand.h> |
| 29 | #include <openssl/sha.h> | 29 | #include <openssl/sha.h> |
| 30 | 30 | ||
| 31 | int MGF1(unsigned char *mask, long len, | 31 | static int MGF1(unsigned char *mask, long len, |
| 32 | const unsigned char *seed, long seedlen); | 32 | const unsigned char *seed, long seedlen); |
| 33 | 33 | ||
| 34 | int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, | 34 | int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, |
| @@ -52,13 +52,6 @@ int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, | |||
| 52 | return 0; | 52 | return 0; |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | dbmask = OPENSSL_malloc(emlen - SHA_DIGEST_LENGTH); | ||
| 56 | if (dbmask == NULL) | ||
| 57 | { | ||
| 58 | RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP, ERR_R_MALLOC_FAILURE); | ||
| 59 | return 0; | ||
| 60 | } | ||
| 61 | |||
| 62 | to[0] = 0; | 55 | to[0] = 0; |
| 63 | seed = to + 1; | 56 | seed = to + 1; |
| 64 | db = to + SHA_DIGEST_LENGTH + 1; | 57 | db = to + SHA_DIGEST_LENGTH + 1; |
| @@ -76,11 +69,20 @@ int RSA_padding_add_PKCS1_OAEP(unsigned char *to, int tlen, | |||
| 76 | 20); | 69 | 20); |
| 77 | #endif | 70 | #endif |
| 78 | 71 | ||
| 79 | MGF1(dbmask, emlen - SHA_DIGEST_LENGTH, seed, SHA_DIGEST_LENGTH); | 72 | dbmask = OPENSSL_malloc(emlen - SHA_DIGEST_LENGTH); |
| 73 | if (dbmask == NULL) | ||
| 74 | { | ||
| 75 | RSAerr(RSA_F_RSA_PADDING_ADD_PKCS1_OAEP, ERR_R_MALLOC_FAILURE); | ||
| 76 | return 0; | ||
| 77 | } | ||
| 78 | |||
| 79 | if (MGF1(dbmask, emlen - SHA_DIGEST_LENGTH, seed, SHA_DIGEST_LENGTH) < 0) | ||
| 80 | return 0; | ||
| 80 | for (i = 0; i < emlen - SHA_DIGEST_LENGTH; i++) | 81 | for (i = 0; i < emlen - SHA_DIGEST_LENGTH; i++) |
| 81 | db[i] ^= dbmask[i]; | 82 | db[i] ^= dbmask[i]; |
| 82 | 83 | ||
| 83 | MGF1(seedmask, SHA_DIGEST_LENGTH, db, emlen - SHA_DIGEST_LENGTH); | 84 | if (MGF1(seedmask, SHA_DIGEST_LENGTH, db, emlen - SHA_DIGEST_LENGTH) < 0) |
| 85 | return 0; | ||
| 84 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) | 86 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) |
| 85 | seed[i] ^= seedmask[i]; | 87 | seed[i] ^= seedmask[i]; |
| 86 | 88 | ||
| @@ -133,11 +135,13 @@ int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen, | |||
| 133 | 135 | ||
| 134 | maskeddb = padded_from + SHA_DIGEST_LENGTH; | 136 | maskeddb = padded_from + SHA_DIGEST_LENGTH; |
| 135 | 137 | ||
| 136 | MGF1(seed, SHA_DIGEST_LENGTH, maskeddb, dblen); | 138 | if (MGF1(seed, SHA_DIGEST_LENGTH, maskeddb, dblen)) |
| 139 | return -1; | ||
| 137 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) | 140 | for (i = 0; i < SHA_DIGEST_LENGTH; i++) |
| 138 | seed[i] ^= padded_from[i]; | 141 | seed[i] ^= padded_from[i]; |
| 139 | 142 | ||
| 140 | MGF1(db, dblen, seed, SHA_DIGEST_LENGTH); | 143 | if (MGF1(db, dblen, seed, SHA_DIGEST_LENGTH)) |
| 144 | return -1; | ||
| 141 | for (i = 0; i < dblen; i++) | 145 | for (i = 0; i < dblen; i++) |
| 142 | db[i] ^= maskeddb[i]; | 146 | db[i] ^= maskeddb[i]; |
| 143 | 147 | ||
| @@ -187,7 +191,9 @@ int PKCS1_MGF1(unsigned char *mask, long len, | |||
| 187 | int mdlen; | 191 | int mdlen; |
| 188 | 192 | ||
| 189 | EVP_MD_CTX_init(&c); | 193 | EVP_MD_CTX_init(&c); |
| 190 | mdlen = M_EVP_MD_size(dgst); | 194 | mdlen = EVP_MD_size(dgst); |
| 195 | if (mdlen < 0) | ||
| 196 | return -1; | ||
| 191 | for (i = 0; outlen < len; i++) | 197 | for (i = 0; outlen < len; i++) |
| 192 | { | 198 | { |
| 193 | cnt[0] = (unsigned char)((i >> 24) & 255); | 199 | cnt[0] = (unsigned char)((i >> 24) & 255); |
| @@ -213,7 +219,8 @@ int PKCS1_MGF1(unsigned char *mask, long len, | |||
| 213 | return 0; | 219 | return 0; |
| 214 | } | 220 | } |
| 215 | 221 | ||
| 216 | int MGF1(unsigned char *mask, long len, const unsigned char *seed, long seedlen) | 222 | static int MGF1(unsigned char *mask, long len, const unsigned char *seed, |
| 223 | long seedlen) | ||
| 217 | { | 224 | { |
| 218 | return PKCS1_MGF1(mask, len, seed, seedlen, EVP_sha1()); | 225 | return PKCS1_MGF1(mask, len, seed, seedlen, EVP_sha1()); |
| 219 | } | 226 | } |
diff --git a/src/lib/libcrypto/rsa/rsa_sign.c b/src/lib/libcrypto/rsa/rsa_sign.c index 5488c06f6d..0be4ec7fb0 100644 --- a/src/lib/libcrypto/rsa/rsa_sign.c +++ b/src/lib/libcrypto/rsa/rsa_sign.c | |||
| @@ -62,6 +62,7 @@ | |||
| 62 | #include <openssl/rsa.h> | 62 | #include <openssl/rsa.h> |
| 63 | #include <openssl/objects.h> | 63 | #include <openssl/objects.h> |
| 64 | #include <openssl/x509.h> | 64 | #include <openssl/x509.h> |
| 65 | #include "rsa_locl.h" | ||
| 65 | 66 | ||
| 66 | /* Size of an SSL signature: MD5+SHA1 */ | 67 | /* Size of an SSL signature: MD5+SHA1 */ |
| 67 | #define SSL_SIG_LENGTH 36 | 68 | #define SSL_SIG_LENGTH 36 |
| @@ -90,14 +91,6 @@ int RSA_sign(int type, const unsigned char *m, unsigned int m_len, | |||
| 90 | i = SSL_SIG_LENGTH; | 91 | i = SSL_SIG_LENGTH; |
| 91 | s = m; | 92 | s = m; |
| 92 | } else { | 93 | } else { |
| 93 | /* NB: in FIPS mode block anything that isn't a TLS signature */ | ||
| 94 | #ifdef OPENSSL_FIPS | ||
| 95 | if(FIPS_mode() && !(rsa->flags & RSA_FLAG_NON_FIPS_ALLOW)) | ||
| 96 | { | ||
| 97 | RSAerr(RSA_F_RSA_SIGN, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE); | ||
| 98 | return 0; | ||
| 99 | } | ||
| 100 | #endif | ||
| 101 | sig.algor= &algor; | 94 | sig.algor= &algor; |
| 102 | sig.algor->algorithm=OBJ_nid2obj(type); | 95 | sig.algor->algorithm=OBJ_nid2obj(type); |
| 103 | if (sig.algor->algorithm == NULL) | 96 | if (sig.algor->algorithm == NULL) |
| @@ -150,8 +143,11 @@ int RSA_sign(int type, const unsigned char *m, unsigned int m_len, | |||
| 150 | return(ret); | 143 | return(ret); |
| 151 | } | 144 | } |
| 152 | 145 | ||
| 153 | int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | 146 | int int_rsa_verify(int dtype, const unsigned char *m, |
| 154 | unsigned char *sigbuf, unsigned int siglen, RSA *rsa) | 147 | unsigned int m_len, |
| 148 | unsigned char *rm, size_t *prm_len, | ||
| 149 | const unsigned char *sigbuf, size_t siglen, | ||
| 150 | RSA *rsa) | ||
| 155 | { | 151 | { |
| 156 | int i,ret=0,sigtype; | 152 | int i,ret=0,sigtype; |
| 157 | unsigned char *s; | 153 | unsigned char *s; |
| @@ -159,38 +155,30 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | |||
| 159 | 155 | ||
| 160 | if (siglen != (unsigned int)RSA_size(rsa)) | 156 | if (siglen != (unsigned int)RSA_size(rsa)) |
| 161 | { | 157 | { |
| 162 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_WRONG_SIGNATURE_LENGTH); | 158 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_WRONG_SIGNATURE_LENGTH); |
| 163 | return(0); | 159 | return(0); |
| 164 | } | 160 | } |
| 165 | 161 | ||
| 166 | if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_verify) | 162 | if((dtype == NID_md5_sha1) && rm) |
| 167 | { | 163 | { |
| 168 | return rsa->meth->rsa_verify(dtype, m, m_len, | 164 | i = RSA_public_decrypt((int)siglen, |
| 169 | sigbuf, siglen, rsa); | 165 | sigbuf,rm,rsa,RSA_PKCS1_PADDING); |
| 166 | if (i <= 0) | ||
| 167 | return 0; | ||
| 168 | *prm_len = i; | ||
| 169 | return 1; | ||
| 170 | } | 170 | } |
| 171 | 171 | ||
| 172 | s=(unsigned char *)OPENSSL_malloc((unsigned int)siglen); | 172 | s=(unsigned char *)OPENSSL_malloc((unsigned int)siglen); |
| 173 | if (s == NULL) | 173 | if (s == NULL) |
| 174 | { | 174 | { |
| 175 | RSAerr(RSA_F_RSA_VERIFY,ERR_R_MALLOC_FAILURE); | 175 | RSAerr(RSA_F_INT_RSA_VERIFY,ERR_R_MALLOC_FAILURE); |
| 176 | goto err; | 176 | goto err; |
| 177 | } | 177 | } |
| 178 | if(dtype == NID_md5_sha1) | 178 | if((dtype == NID_md5_sha1) && (m_len != SSL_SIG_LENGTH) ) { |
| 179 | { | 179 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_INVALID_MESSAGE_LENGTH); |
| 180 | if (m_len != SSL_SIG_LENGTH) | ||
| 181 | { | ||
| 182 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_INVALID_MESSAGE_LENGTH); | ||
| 183 | goto err; | 180 | goto err; |
| 184 | } | 181 | } |
| 185 | } | ||
| 186 | /* NB: in FIPS mode block anything that isn't a TLS signature */ | ||
| 187 | #ifdef OPENSSL_FIPS | ||
| 188 | else if(FIPS_mode() && !(rsa->flags & RSA_FLAG_NON_FIPS_ALLOW)) | ||
| 189 | { | ||
| 190 | RSAerr(RSA_F_RSA_VERIFY, RSA_R_OPERATION_NOT_ALLOWED_IN_FIPS_MODE); | ||
| 191 | return 0; | ||
| 192 | } | ||
| 193 | #endif | ||
| 194 | i=RSA_public_decrypt((int)siglen,sigbuf,s,rsa,RSA_PKCS1_PADDING); | 182 | i=RSA_public_decrypt((int)siglen,sigbuf,s,rsa,RSA_PKCS1_PADDING); |
| 195 | 183 | ||
| 196 | if (i <= 0) goto err; | 184 | if (i <= 0) goto err; |
| @@ -198,7 +186,7 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | |||
| 198 | /* Special case: SSL signature */ | 186 | /* Special case: SSL signature */ |
| 199 | if(dtype == NID_md5_sha1) { | 187 | if(dtype == NID_md5_sha1) { |
| 200 | if((i != SSL_SIG_LENGTH) || memcmp(s, m, SSL_SIG_LENGTH)) | 188 | if((i != SSL_SIG_LENGTH) || memcmp(s, m, SSL_SIG_LENGTH)) |
| 201 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_BAD_SIGNATURE); | 189 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_BAD_SIGNATURE); |
| 202 | else ret = 1; | 190 | else ret = 1; |
| 203 | } else { | 191 | } else { |
| 204 | const unsigned char *p=s; | 192 | const unsigned char *p=s; |
| @@ -209,7 +197,7 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | |||
| 209 | /* Excess data can be used to create forgeries */ | 197 | /* Excess data can be used to create forgeries */ |
| 210 | if(p != s+i) | 198 | if(p != s+i) |
| 211 | { | 199 | { |
| 212 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_BAD_SIGNATURE); | 200 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_BAD_SIGNATURE); |
| 213 | goto err; | 201 | goto err; |
| 214 | } | 202 | } |
| 215 | 203 | ||
| @@ -218,7 +206,7 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | |||
| 218 | if(sig->algor->parameter | 206 | if(sig->algor->parameter |
| 219 | && ASN1_TYPE_get(sig->algor->parameter) != V_ASN1_NULL) | 207 | && ASN1_TYPE_get(sig->algor->parameter) != V_ASN1_NULL) |
| 220 | { | 208 | { |
| 221 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_BAD_SIGNATURE); | 209 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_BAD_SIGNATURE); |
| 222 | goto err; | 210 | goto err; |
| 223 | } | 211 | } |
| 224 | 212 | ||
| @@ -244,15 +232,30 @@ int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | |||
| 244 | } | 232 | } |
| 245 | else | 233 | else |
| 246 | { | 234 | { |
| 247 | RSAerr(RSA_F_RSA_VERIFY, | 235 | RSAerr(RSA_F_INT_RSA_VERIFY, |
| 248 | RSA_R_ALGORITHM_MISMATCH); | 236 | RSA_R_ALGORITHM_MISMATCH); |
| 249 | goto err; | 237 | goto err; |
| 250 | } | 238 | } |
| 251 | } | 239 | } |
| 252 | if ( ((unsigned int)sig->digest->length != m_len) || | 240 | if (rm) |
| 241 | { | ||
| 242 | const EVP_MD *md; | ||
| 243 | md = EVP_get_digestbynid(dtype); | ||
| 244 | if (md && (EVP_MD_size(md) != sig->digest->length)) | ||
| 245 | RSAerr(RSA_F_INT_RSA_VERIFY, | ||
| 246 | RSA_R_INVALID_DIGEST_LENGTH); | ||
| 247 | else | ||
| 248 | { | ||
| 249 | memcpy(rm, sig->digest->data, | ||
| 250 | sig->digest->length); | ||
| 251 | *prm_len = sig->digest->length; | ||
| 252 | ret = 1; | ||
| 253 | } | ||
| 254 | } | ||
| 255 | else if (((unsigned int)sig->digest->length != m_len) || | ||
| 253 | (memcmp(m,sig->digest->data,m_len) != 0)) | 256 | (memcmp(m,sig->digest->data,m_len) != 0)) |
| 254 | { | 257 | { |
| 255 | RSAerr(RSA_F_RSA_VERIFY,RSA_R_BAD_SIGNATURE); | 258 | RSAerr(RSA_F_INT_RSA_VERIFY,RSA_R_BAD_SIGNATURE); |
| 256 | } | 259 | } |
| 257 | else | 260 | else |
| 258 | ret=1; | 261 | ret=1; |
| @@ -267,3 +270,16 @@ err: | |||
| 267 | return(ret); | 270 | return(ret); |
| 268 | } | 271 | } |
| 269 | 272 | ||
| 273 | int RSA_verify(int dtype, const unsigned char *m, unsigned int m_len, | ||
| 274 | const unsigned char *sigbuf, unsigned int siglen, | ||
| 275 | RSA *rsa) | ||
| 276 | { | ||
| 277 | |||
| 278 | if((rsa->flags & RSA_FLAG_SIGN_VER) && rsa->meth->rsa_verify) | ||
| 279 | { | ||
| 280 | return rsa->meth->rsa_verify(dtype, m, m_len, | ||
| 281 | sigbuf, siglen, rsa); | ||
| 282 | } | ||
| 283 | |||
| 284 | return int_rsa_verify(dtype, m, m_len, NULL, NULL, sigbuf, siglen, rsa); | ||
| 285 | } | ||
diff --git a/src/lib/libcrypto/rsa/rsa_test.c b/src/lib/libcrypto/rsa/rsa_test.c index 4080de8bcf..c8705a0f6e 100644 --- a/src/lib/libcrypto/rsa/rsa_test.c +++ b/src/lib/libcrypto/rsa/rsa_test.c | |||
| @@ -328,7 +328,7 @@ int main(int argc, char *argv[]) | |||
| 328 | } | 328 | } |
| 329 | 329 | ||
| 330 | CRYPTO_cleanup_all_ex_data(); | 330 | CRYPTO_cleanup_all_ex_data(); |
| 331 | ERR_remove_state(0); | 331 | ERR_remove_thread_state(NULL); |
| 332 | 332 | ||
| 333 | CRYPTO_mem_leaks_fp(stderr); | 333 | CRYPTO_mem_leaks_fp(stderr); |
| 334 | 334 | ||
diff --git a/src/lib/libcrypto/rsa/rsa_x931g.c b/src/lib/libcrypto/rsa/rsa_x931g.c deleted file mode 100644 index bf94f8be7a..0000000000 --- a/src/lib/libcrypto/rsa/rsa_x931g.c +++ /dev/null | |||
| @@ -1,255 +0,0 @@ | |||
| 1 | /* crypto/rsa/rsa_gen.c */ | ||
| 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | ||
| 3 | * All rights reserved. | ||
| 4 | * | ||
| 5 | * This package is an SSL implementation written | ||
| 6 | * by Eric Young (eay@cryptsoft.com). | ||
| 7 | * The implementation was written so as to conform with Netscapes SSL. | ||
| 8 | * | ||
| 9 | * This library is free for commercial and non-commercial use as long as | ||
| 10 | * the following conditions are aheared to. The following conditions | ||
| 11 | * apply to all code found in this distribution, be it the RC4, RSA, | ||
| 12 | * lhash, DES, etc., code; not just the SSL code. The SSL documentation | ||
| 13 | * included with this distribution is covered by the same copyright terms | ||
| 14 | * except that the holder is Tim Hudson (tjh@cryptsoft.com). | ||
| 15 | * | ||
| 16 | * Copyright remains Eric Young's, and as such any Copyright notices in | ||
| 17 | * the code are not to be removed. | ||
| 18 | * If this package is used in a product, Eric Young should be given attribution | ||
| 19 | * as the author of the parts of the library used. | ||
| 20 | * This can be in the form of a textual message at program startup or | ||
| 21 | * in documentation (online or textual) provided with the package. | ||
| 22 | * | ||
| 23 | * Redistribution and use in source and binary forms, with or without | ||
| 24 | * modification, are permitted provided that the following conditions | ||
| 25 | * are met: | ||
| 26 | * 1. Redistributions of source code must retain the copyright | ||
| 27 | * notice, this list of conditions and the following disclaimer. | ||
| 28 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 29 | * notice, this list of conditions and the following disclaimer in the | ||
| 30 | * documentation and/or other materials provided with the distribution. | ||
| 31 | * 3. All advertising materials mentioning features or use of this software | ||
| 32 | * must display the following acknowledgement: | ||
| 33 | * "This product includes cryptographic software written by | ||
| 34 | * Eric Young (eay@cryptsoft.com)" | ||
| 35 | * The word 'cryptographic' can be left out if the rouines from the library | ||
| 36 | * being used are not cryptographic related :-). | ||
| 37 | * 4. If you include any Windows specific code (or a derivative thereof) from | ||
| 38 | * the apps directory (application code) you must include an acknowledgement: | ||
| 39 | * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" | ||
| 40 | * | ||
| 41 | * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND | ||
| 42 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
| 43 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
| 44 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE | ||
| 45 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
| 46 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS | ||
| 47 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | ||
| 48 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
| 49 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY | ||
| 50 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | ||
| 51 | * SUCH DAMAGE. | ||
| 52 | * | ||
| 53 | * The licence and distribution terms for any publically available version or | ||
| 54 | * derivative of this code cannot be changed. i.e. this code cannot simply be | ||
| 55 | * copied and put under another distribution licence | ||
| 56 | * [including the GNU Public Licence.] | ||
| 57 | */ | ||
| 58 | |||
| 59 | #include <stdio.h> | ||
| 60 | #include <string.h> | ||
| 61 | #include <time.h> | ||
| 62 | #include <openssl/err.h> | ||
| 63 | #include <openssl/bn.h> | ||
| 64 | #include <openssl/rsa.h> | ||
| 65 | |||
| 66 | #ifndef OPENSSL_FIPS | ||
| 67 | |||
| 68 | /* X9.31 RSA key derivation and generation */ | ||
| 69 | |||
| 70 | int RSA_X931_derive_ex(RSA *rsa, BIGNUM *p1, BIGNUM *p2, BIGNUM *q1, BIGNUM *q2, | ||
| 71 | const BIGNUM *Xp1, const BIGNUM *Xp2, const BIGNUM *Xp, | ||
| 72 | const BIGNUM *Xq1, const BIGNUM *Xq2, const BIGNUM *Xq, | ||
| 73 | const BIGNUM *e, BN_GENCB *cb) | ||
| 74 | { | ||
| 75 | BIGNUM *r0=NULL,*r1=NULL,*r2=NULL,*r3=NULL; | ||
| 76 | BN_CTX *ctx=NULL,*ctx2=NULL; | ||
| 77 | |||
| 78 | if (!rsa) | ||
| 79 | goto err; | ||
| 80 | |||
| 81 | ctx = BN_CTX_new(); | ||
| 82 | if (!ctx) | ||
| 83 | goto err; | ||
| 84 | BN_CTX_start(ctx); | ||
| 85 | |||
| 86 | r0 = BN_CTX_get(ctx); | ||
| 87 | r1 = BN_CTX_get(ctx); | ||
| 88 | r2 = BN_CTX_get(ctx); | ||
| 89 | r3 = BN_CTX_get(ctx); | ||
| 90 | |||
| 91 | if (r3 == NULL) | ||
| 92 | goto err; | ||
| 93 | if (!rsa->e) | ||
| 94 | { | ||
| 95 | rsa->e = BN_dup(e); | ||
| 96 | if (!rsa->e) | ||
| 97 | goto err; | ||
| 98 | } | ||
| 99 | else | ||
| 100 | e = rsa->e; | ||
| 101 | |||
| 102 | /* If not all parameters present only calculate what we can. | ||
| 103 | * This allows test programs to output selective parameters. | ||
| 104 | */ | ||
| 105 | |||
| 106 | if (Xp && !rsa->p) | ||
| 107 | { | ||
| 108 | rsa->p = BN_new(); | ||
| 109 | if (!rsa->p) | ||
| 110 | goto err; | ||
| 111 | |||
| 112 | if (!BN_X931_derive_prime_ex(rsa->p, p1, p2, | ||
| 113 | Xp, Xp1, Xp2, e, ctx, cb)) | ||
| 114 | goto err; | ||
| 115 | } | ||
| 116 | |||
| 117 | if (Xq && !rsa->q) | ||
| 118 | { | ||
| 119 | rsa->q = BN_new(); | ||
| 120 | if (!rsa->q) | ||
| 121 | goto err; | ||
| 122 | if (!BN_X931_derive_prime_ex(rsa->q, q1, q2, | ||
| 123 | Xq, Xq1, Xq2, e, ctx, cb)) | ||
| 124 | goto err; | ||
| 125 | } | ||
| 126 | |||
| 127 | if (!rsa->p || !rsa->q) | ||
| 128 | { | ||
| 129 | BN_CTX_end(ctx); | ||
| 130 | BN_CTX_free(ctx); | ||
| 131 | return 2; | ||
| 132 | } | ||
| 133 | |||
| 134 | /* Since both primes are set we can now calculate all remaining | ||
| 135 | * components. | ||
| 136 | */ | ||
| 137 | |||
| 138 | /* calculate n */ | ||
| 139 | rsa->n=BN_new(); | ||
| 140 | if (rsa->n == NULL) | ||
| 141 | goto err; | ||
| 142 | if (!BN_mul(rsa->n,rsa->p,rsa->q,ctx)) | ||
| 143 | goto err; | ||
| 144 | |||
| 145 | /* calculate d */ | ||
| 146 | if (!BN_sub(r1,rsa->p,BN_value_one())) | ||
| 147 | goto err; /* p-1 */ | ||
| 148 | if (!BN_sub(r2,rsa->q,BN_value_one())) | ||
| 149 | goto err; /* q-1 */ | ||
| 150 | if (!BN_mul(r0,r1,r2,ctx)) | ||
| 151 | goto err; /* (p-1)(q-1) */ | ||
| 152 | |||
| 153 | if (!BN_gcd(r3, r1, r2, ctx)) | ||
| 154 | goto err; | ||
| 155 | |||
| 156 | if (!BN_div(r0, NULL, r0, r3, ctx)) | ||
| 157 | goto err; /* LCM((p-1)(q-1)) */ | ||
| 158 | |||
| 159 | ctx2 = BN_CTX_new(); | ||
| 160 | if (!ctx2) | ||
| 161 | goto err; | ||
| 162 | |||
| 163 | rsa->d=BN_mod_inverse(NULL,rsa->e,r0,ctx2); /* d */ | ||
| 164 | if (rsa->d == NULL) | ||
| 165 | goto err; | ||
| 166 | |||
| 167 | /* calculate d mod (p-1) */ | ||
| 168 | rsa->dmp1=BN_new(); | ||
| 169 | if (rsa->dmp1 == NULL) | ||
| 170 | goto err; | ||
| 171 | if (!BN_mod(rsa->dmp1,rsa->d,r1,ctx)) | ||
| 172 | goto err; | ||
| 173 | |||
| 174 | /* calculate d mod (q-1) */ | ||
| 175 | rsa->dmq1=BN_new(); | ||
| 176 | if (rsa->dmq1 == NULL) | ||
| 177 | goto err; | ||
| 178 | if (!BN_mod(rsa->dmq1,rsa->d,r2,ctx)) | ||
| 179 | goto err; | ||
| 180 | |||
| 181 | /* calculate inverse of q mod p */ | ||
| 182 | rsa->iqmp=BN_mod_inverse(NULL,rsa->q,rsa->p,ctx2); | ||
| 183 | |||
| 184 | err: | ||
| 185 | if (ctx) | ||
| 186 | { | ||
| 187 | BN_CTX_end(ctx); | ||
| 188 | BN_CTX_free(ctx); | ||
| 189 | } | ||
| 190 | if (ctx2) | ||
| 191 | BN_CTX_free(ctx2); | ||
| 192 | /* If this is set all calls successful */ | ||
| 193 | if (rsa && rsa->iqmp != NULL) | ||
| 194 | return 1; | ||
| 195 | |||
| 196 | return 0; | ||
| 197 | |||
| 198 | } | ||
| 199 | |||
| 200 | int RSA_X931_generate_key_ex(RSA *rsa, int bits, const BIGNUM *e, BN_GENCB *cb) | ||
| 201 | { | ||
| 202 | int ok = 0; | ||
| 203 | BIGNUM *Xp = NULL, *Xq = NULL; | ||
| 204 | BN_CTX *ctx = NULL; | ||
| 205 | |||
| 206 | ctx = BN_CTX_new(); | ||
| 207 | if (!ctx) | ||
| 208 | goto error; | ||
| 209 | |||
| 210 | BN_CTX_start(ctx); | ||
| 211 | Xp = BN_CTX_get(ctx); | ||
| 212 | Xq = BN_CTX_get(ctx); | ||
| 213 | if (!BN_X931_generate_Xpq(Xp, Xq, bits, ctx)) | ||
| 214 | goto error; | ||
| 215 | |||
| 216 | rsa->p = BN_new(); | ||
| 217 | rsa->q = BN_new(); | ||
| 218 | if (!rsa->p || !rsa->q) | ||
| 219 | goto error; | ||
| 220 | |||
| 221 | /* Generate two primes from Xp, Xq */ | ||
| 222 | |||
| 223 | if (!BN_X931_generate_prime_ex(rsa->p, NULL, NULL, NULL, NULL, Xp, | ||
| 224 | e, ctx, cb)) | ||
| 225 | goto error; | ||
| 226 | |||
| 227 | if (!BN_X931_generate_prime_ex(rsa->q, NULL, NULL, NULL, NULL, Xq, | ||
| 228 | e, ctx, cb)) | ||
| 229 | goto error; | ||
| 230 | |||
| 231 | /* Since rsa->p and rsa->q are valid this call will just derive | ||
| 232 | * remaining RSA components. | ||
| 233 | */ | ||
| 234 | |||
| 235 | if (!RSA_X931_derive_ex(rsa, NULL, NULL, NULL, NULL, | ||
| 236 | NULL, NULL, NULL, NULL, NULL, NULL, e, cb)) | ||
| 237 | goto error; | ||
| 238 | |||
| 239 | ok = 1; | ||
| 240 | |||
| 241 | error: | ||
| 242 | if (ctx) | ||
| 243 | { | ||
| 244 | BN_CTX_end(ctx); | ||
| 245 | BN_CTX_free(ctx); | ||
| 246 | } | ||
| 247 | |||
| 248 | if (ok) | ||
| 249 | return 1; | ||
| 250 | |||
| 251 | return 0; | ||
| 252 | |||
| 253 | } | ||
| 254 | |||
| 255 | #endif | ||
