diff options
Diffstat (limited to 'src/lib/libssl/crypto')
| -rw-r--r-- | src/lib/libssl/crypto/Makefile | 562 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/alpha/opensslconf.h | 257 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/amd64/opensslconf.h | 257 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/arm/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/hppa/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/hppa64/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/i386/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/m68k/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/m88k/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/mips64/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/powerpc/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sh/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sparc/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/sparc64/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/vax/bn_asm_vax.S | 436 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/arch/vax/opensslconf.h | 259 | ||||
| -rw-r--r-- | src/lib/libssl/crypto/shlib_version | 2 |
17 files changed, 4622 insertions, 0 deletions
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile new file mode 100644 index 0000000000..c15f623d57 --- /dev/null +++ b/src/lib/libssl/crypto/Makefile | |||
| @@ -0,0 +1,562 @@ | |||
| 1 | # $OpenBSD: Makefile,v 1.61 2012/08/02 13:38:39 okan Exp $ | ||
| 2 | |||
| 3 | LIB= crypto | ||
| 4 | |||
| 5 | SSLEAYDIST= src | ||
| 6 | SSL_SRC= ${.CURDIR}/../${SSLEAYDIST} | ||
| 7 | LCRYPTO_SRC= ${SSL_SRC}/crypto | ||
| 8 | |||
| 9 | # arm and sh default to little endian, mips defaults to big endian | ||
| 10 | .if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "amd64" || \ | ||
| 11 | ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "i386" || \ | ||
| 12 | ${MACHINE_ARCH} == "mips64el" || ${MACHINE_ARCH} == "sh" || \ | ||
| 13 | ${MACHINE_ARCH} == "vax" | ||
| 14 | CFLAGS+= -DL_ENDIAN | ||
| 15 | .else | ||
| 16 | CFLAGS+= -DB_ENDIAN | ||
| 17 | .endif | ||
| 18 | |||
| 19 | .include <bsd.own.mk> # for 'NOPIC' definition | ||
| 20 | .if !defined(NOPIC) | ||
| 21 | CFLAGS+= -DDSO_DLFCN -DHAVE_DLFCN_H | ||
| 22 | .endif | ||
| 23 | |||
| 24 | .if ${MACHINE_ARCH} == "sparc" | ||
| 25 | PICFLAG=-fPIC | ||
| 26 | .endif | ||
| 27 | |||
| 28 | CFLAGS+= -DTERMIOS -DANSI_SOURCE -DNO_ERR -DNO_WINDOWS_BRAINDEATH | ||
| 29 | # Patented algorithms | ||
| 30 | CFLAGS+= -DOPENSSL_NO_IDEA | ||
| 31 | CFLAGS+= -DOPENSSL_NO_RC5 | ||
| 32 | CFLAGS+= -DOPENSSL_NO_KRB5 | ||
| 33 | # NB. MDC2 is off patent now, we can add it whenever we want to | ||
| 34 | CFLAGS+= -DOPENSSL_NO_MDC2 | ||
| 35 | CFLAGS+= -DOPENSSL_NO_GOST | ||
| 36 | |||
| 37 | # Hardware engines | ||
| 38 | CFLAGS+= -DOPENSSL_NO_HW_4758_CCA | ||
| 39 | CFLAGS+= -DOPENSSL_NO_HW_AEP | ||
| 40 | CFLAGS+= -DOPENSSL_NO_HW_ATALLA | ||
| 41 | CFLAGS+= -DOPENSSL_NO_CAPIENG | ||
| 42 | CFLAGS+= -DOPENSSL_NO_HW_CSWIFT | ||
| 43 | CFLAGS+= -DOPENSSL_NO_HW_NCIPHER | ||
| 44 | CFLAGS+= -DOPENSSL_NO_HW_NURON | ||
| 45 | CFLAGS+= -DOPENSSL_NO_HW_PADLOCK # XXX enable this? | ||
| 46 | CFLAGS+= -DOPENSSL_NO_HW_SUREWARE | ||
| 47 | CFLAGS+= -DOPENSSL_NO_HW_UBSEC | ||
| 48 | |||
| 49 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} | ||
| 50 | CFLAGS+= -I${LCRYPTO_SRC} | ||
| 51 | CFLAGS+= -I${LCRYPTO_SRC}/asn1 -I${LCRYPTO_SRC}/evp | ||
| 52 | |||
| 53 | # crypto/ | ||
| 54 | SRCS+= cryptlib.c mem.c mem_dbg.c cversion.c ex_data.c cpt_err.c | ||
| 55 | SRCS+= ebcdic.c uid.c o_time.c o_str.c o_dir.c | ||
| 56 | |||
| 57 | # acss/ | ||
| 58 | SRCS+= acss_skey.c acss_enc.c | ||
| 59 | |||
| 60 | # aes/ | ||
| 61 | SRCS+= aes_misc.c aes_ecb.c aes_cfb.c aes_ofb.c aes_ctr.c aes_ige.c aes_wrap.c | ||
| 62 | |||
| 63 | # asn1/ | ||
| 64 | SRCS+= a_object.c a_bitstr.c a_utctm.c a_gentm.c a_time.c a_int.c a_octet.c | ||
| 65 | SRCS+= a_print.c a_type.c a_set.c a_dup.c a_d2i_fp.c a_i2d_fp.c | ||
| 66 | SRCS+= a_enum.c a_utf8.c a_sign.c a_digest.c a_verify.c a_mbstr.c a_strex.c | ||
| 67 | SRCS+= x_algor.c x_val.c x_pubkey.c x_sig.c x_req.c x_attrib.c x_bignum.c | ||
| 68 | SRCS+= x_long.c x_name.c x_x509.c x_x509a.c x_crl.c x_info.c x_spki.c nsseq.c | ||
| 69 | SRCS+= x_nx509.c d2i_pu.c d2i_pr.c i2d_pu.c i2d_pr.c | ||
| 70 | SRCS+= t_req.c t_x509.c t_x509a.c t_crl.c t_pkey.c t_spki.c t_bitst.c | ||
| 71 | SRCS+= tasn_new.c tasn_fre.c tasn_enc.c tasn_dec.c tasn_utl.c tasn_typ.c | ||
| 72 | SRCS+= tasn_prn.c ameth_lib.c | ||
| 73 | SRCS+= f_int.c f_string.c n_pkey.c | ||
| 74 | SRCS+= f_enum.c x_pkey.c a_bool.c x_exten.c bio_asn1.c bio_ndef.c asn_mime.c | ||
| 75 | SRCS+= asn1_gen.c asn1_par.c asn1_lib.c asn1_err.c a_bytes.c a_strnid.c | ||
| 76 | SRCS+= evp_asn1.c asn_pack.c p5_pbe.c p5_pbev2.c p8_pkey.c asn_moid.c | ||
| 77 | |||
| 78 | # bf/ | ||
| 79 | SRCS+= bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c | ||
| 80 | |||
| 81 | # bio/ | ||
| 82 | SRCS+= bio_lib.c bio_cb.c bio_err.c | ||
| 83 | SRCS+= bss_mem.c bss_null.c bss_fd.c | ||
| 84 | SRCS+= bss_file.c bss_sock.c bss_conn.c | ||
| 85 | SRCS+= bf_null.c bf_buff.c b_print.c b_dump.c | ||
| 86 | SRCS+= b_sock.c bss_acpt.c bf_nbio.c bss_log.c bss_bio.c | ||
| 87 | SRCS+= bss_dgram.c | ||
| 88 | |||
| 89 | # bn/ | ||
| 90 | SRCS+= bn_add.c bn_div.c bn_exp.c bn_lib.c bn_ctx.c bn_mul.c bn_mod.c | ||
| 91 | SRCS+= bn_print.c bn_rand.c bn_shift.c bn_word.c bn_blind.c | ||
| 92 | SRCS+= bn_kron.c bn_sqrt.c bn_gcd.c bn_prime.c bn_err.c bn_sqr.c | ||
| 93 | SRCS+= bn_recp.c bn_mont.c bn_mpi.c bn_exp2.c bn_gf2m.c bn_nist.c | ||
| 94 | SRCS+= bn_depr.c bn_const.c | ||
| 95 | |||
| 96 | # buffer/ | ||
| 97 | SRCS+= buffer.c buf_err.c | ||
| 98 | |||
| 99 | # camellia/ | ||
| 100 | #SRCS+= cmll_ecb.c cmll_ofb.c cmll_cfb.c cmll_ctr.c | ||
| 101 | |||
| 102 | # cast/ | ||
| 103 | SRCS+= c_skey.c c_ecb.c c_enc.c c_cfb64.c c_ofb64.c | ||
| 104 | |||
| 105 | # cms/ | ||
| 106 | #SRCS+= cms_lib.c cms_asn1.c cms_att.c cms_io.c cms_smime.c cms_err.c | ||
| 107 | #SRCS+= cms_sd.c cms_dd.c cms_cd.c cms_env.c cms_enc.c cms_ess.c | ||
| 108 | |||
| 109 | # comp/ | ||
| 110 | SRCS+= comp_lib.c comp_err.c c_rle.c c_zlib.c | ||
| 111 | |||
| 112 | # conf/ | ||
| 113 | SRCS+= conf_err.c conf_lib.c conf_api.c conf_def.c conf_mod.c | ||
| 114 | SRCS+= conf_mall.c conf_sap.c | ||
| 115 | |||
| 116 | # des/ | ||
| 117 | SRCS+= cbc_cksm.c cbc_enc.c cfb64enc.c cfb_enc.c | ||
| 118 | SRCS+= ecb3_enc.c ecb_enc.c enc_read.c enc_writ.c | ||
| 119 | SRCS+= fcrypt.c ofb64enc.c ofb_enc.c pcbc_enc.c | ||
| 120 | SRCS+= qud_cksm.c rand_key.c rpc_enc.c set_key.c xcbc_enc.c | ||
| 121 | SRCS+= str2key.c cfb64ede.c ofb64ede.c ede_cbcm_enc.c des_old.c des_old2.c | ||
| 122 | SRCS+= read2pwd.c | ||
| 123 | |||
| 124 | # dh/ | ||
| 125 | SRCS+= dh_asn1.c dh_gen.c dh_key.c dh_lib.c dh_check.c dh_err.c dh_depr.c | ||
| 126 | SRCS+= dh_ameth.c dh_pmeth.c dh_prn.c | ||
| 127 | |||
| 128 | # dsa/ | ||
| 129 | SRCS+= dsa_gen.c dsa_key.c dsa_lib.c dsa_asn1.c dsa_vrf.c dsa_sign.c | ||
| 130 | SRCS+= dsa_err.c dsa_ossl.c dsa_depr.c dsa_ameth.c dsa_pmeth.c dsa_prn.c | ||
| 131 | |||
| 132 | # dso/ | ||
| 133 | SRCS+= dso_dl.c dso_dlfcn.c dso_err.c dso_lib.c dso_null.c | ||
| 134 | SRCS+= dso_openssl.c dso_win32.c dso_vms.c dso_beos.c | ||
| 135 | |||
| 136 | # ec/ | ||
| 137 | SRCS+= ec_lib.c ecp_smpl.c ecp_mont.c ecp_nist.c ec_cvt.c ec_mult.c | ||
| 138 | SRCS+= ec_err.c ec_curve.c ec_check.c ec_print.c ec_asn1.c ec_key.c | ||
| 139 | SRCS+= ec2_smpl.c ec2_mult.c ec_ameth.c ec_pmeth.c eck_prn.c | ||
| 140 | |||
| 141 | # ecdh/ | ||
| 142 | SRCS+= ech_lib.c ech_ossl.c ech_key.c ech_err.c | ||
| 143 | |||
| 144 | # ecdsa/ | ||
| 145 | SRCS+= ecs_lib.c ecs_asn1.c ecs_ossl.c ecs_sign.c ecs_vrf.c ecs_err.c | ||
| 146 | |||
| 147 | # engine/ | ||
| 148 | SRCS+= eng_err.c eng_lib.c eng_list.c eng_init.c eng_ctrl.c | ||
| 149 | SRCS+= eng_table.c eng_pkey.c eng_fat.c eng_all.c | ||
| 150 | SRCS+= tb_rsa.c tb_dsa.c tb_ecdsa.c tb_dh.c tb_ecdh.c tb_rand.c tb_store.c | ||
| 151 | SRCS+= tb_cipher.c tb_digest.c tb_pkmeth.c tb_asnmth.c | ||
| 152 | SRCS+= eng_openssl.c eng_cnf.c eng_dyn.c hw_cryptodev.c | ||
| 153 | SRCS+= eng_aesni.c # local addition | ||
| 154 | |||
| 155 | # err/ | ||
| 156 | SRCS+= err.c err_all.c err_prn.c | ||
| 157 | |||
| 158 | # evp/ | ||
| 159 | SRCS+= encode.c digest.c evp_enc.c evp_key.c evp_acnf.c | ||
| 160 | SRCS+= e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c | ||
| 161 | SRCS+= e_rc4.c e_aes.c names.c e_seed.c | ||
| 162 | SRCS+= e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c | ||
| 163 | SRCS+= m_null.c m_md2.c m_md4.c m_md5.c m_sha.c m_sha1.c m_wp.c | ||
| 164 | SRCS+= m_dss.c m_dss1.c m_mdc2.c m_ripemd.c m_ecdsa.c | ||
| 165 | SRCS+= p_open.c p_seal.c p_sign.c p_verify.c p_lib.c p_enc.c p_dec.c | ||
| 166 | SRCS+= bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c | ||
| 167 | SRCS+= c_all.c c_allc.c c_alld.c evp_lib.c bio_ok.c | ||
| 168 | SRCS+= evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c | ||
| 169 | SRCS+= e_old.c pmeth_lib.c pmeth_fn.c pmeth_gn.c m_sigver.c | ||
| 170 | SRCS+= e_acss.c # Local addition | ||
| 171 | |||
| 172 | # hmac/ | ||
| 173 | SRCS+= hmac.c hm_ameth.c hm_pmeth.c | ||
| 174 | |||
| 175 | # idea/ | ||
| 176 | #SRCS+= i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c | ||
| 177 | |||
| 178 | # jpake/ | ||
| 179 | #SRCS+= jpake.c jpake_err.c | ||
| 180 | |||
| 181 | # krb5/ | ||
| 182 | SRCS+= krb5_asn.c | ||
| 183 | |||
| 184 | # lhash/ | ||
| 185 | SRCS+= lhash.c lh_stats.c | ||
| 186 | |||
| 187 | # md2 | ||
| 188 | ##SRCS+= md2_dgst.c md2_one.c | ||
| 189 | |||
| 190 | # md4/ | ||
| 191 | SRCS+= md4_dgst.c md4_one.c | ||
| 192 | |||
| 193 | # md5/ | ||
| 194 | SRCS+= md5_dgst.c md5_one.c | ||
| 195 | |||
| 196 | # mdc2/ | ||
| 197 | #SRCS+= mdc2dgst.c mdc2_one.c | ||
| 198 | |||
| 199 | # modes/ | ||
| 200 | SRCS+= cbc128.c ctr128.c cts128.c cfb128.c ofb128.c | ||
| 201 | |||
| 202 | # objects/ | ||
| 203 | SRCS+= o_names.c obj_dat.c obj_lib.c obj_err.c obj_xref.c | ||
| 204 | |||
| 205 | # ocsp/ | ||
| 206 | SRCS+= ocsp_asn.c ocsp_ext.c ocsp_ht.c ocsp_lib.c ocsp_cl.c | ||
| 207 | SRCS+= ocsp_srv.c ocsp_prn.c ocsp_vfy.c ocsp_err.c | ||
| 208 | |||
| 209 | # pem/ | ||
| 210 | SRCS+= pem_sign.c pem_seal.c pem_info.c pem_lib.c pem_all.c pem_err.c | ||
| 211 | SRCS+= pem_x509.c pem_xaux.c pem_oth.c pem_pk8.c pem_pkey.c pvkfmt.c | ||
| 212 | |||
| 213 | # pkcs12/ | ||
| 214 | SRCS+= p12_add.c p12_asn.c p12_attr.c p12_crpt.c p12_crt.c p12_decr.c | ||
| 215 | SRCS+= p12_init.c p12_key.c p12_kiss.c p12_mutl.c | ||
| 216 | SRCS+= p12_utl.c p12_npas.c pk12err.c p12_p8d.c p12_p8e.c | ||
| 217 | |||
| 218 | # pkcs7/ | ||
| 219 | SRCS+= pk7_asn1.c pk7_lib.c pkcs7err.c pk7_doit.c pk7_smime.c pk7_attr.c | ||
| 220 | SRCS+= pk7_mime.c bio_pk7.c | ||
| 221 | |||
| 222 | # pqueue/ | ||
| 223 | SRCS+= pqueue.c | ||
| 224 | |||
| 225 | # rand/ | ||
| 226 | SRCS+= md_rand.c randfile.c rand_lib.c rand_err.c rand_egd.c | ||
| 227 | SRCS+= rand_win.c rand_unix.c rand_os2.c rand_nw.c | ||
| 228 | |||
| 229 | # rc2/ | ||
| 230 | SRCS+= rc2_ecb.c rc2_skey.c rc2_cbc.c rc2cfb64.c rc2ofb64.c | ||
| 231 | |||
| 232 | # rc5/ | ||
| 233 | #SRCS+= rc5_skey.c rc5_ecb.c rc5_enc.c rc5cfb64.c rc5ofb64.c | ||
| 234 | |||
| 235 | # ripemd/ | ||
| 236 | SRCS+= rmd_dgst.c rmd_one.c | ||
| 237 | |||
| 238 | # rsa/ | ||
| 239 | SRCS+= rsa_eay.c rsa_gen.c rsa_lib.c rsa_sign.c rsa_saos.c rsa_err.c | ||
| 240 | SRCS+= rsa_pk1.c rsa_ssl.c rsa_none.c rsa_oaep.c rsa_chk.c rsa_null.c | ||
| 241 | SRCS+= rsa_pss.c rsa_x931.c rsa_asn1.c rsa_depr.c rsa_ameth.c rsa_prn.c | ||
| 242 | SRCS+= rsa_pmeth.c | ||
| 243 | |||
| 244 | # seed/ | ||
| 245 | #SRCS+= seed.c seed_ecb.c seed_cbc.c seed_cfb.c seed_ofb.c | ||
| 246 | |||
| 247 | # sha/ | ||
| 248 | SRCS+= sha_dgst.c sha1dgst.c sha_one.c sha1_one.c sha256.c sha512.c | ||
| 249 | |||
| 250 | # stack/ | ||
| 251 | SRCS+= stack.c | ||
| 252 | |||
| 253 | # store/ | ||
| 254 | #SRCS+= str_err.c str_lib.c str_meth.c str_mem.c | ||
| 255 | |||
| 256 | # ts/ | ||
| 257 | SRCS+= ts_err.c ts_req_utils.c ts_req_print.c ts_rsp_utils.c ts_rsp_print.c | ||
| 258 | SRCS+= ts_rsp_sign.c ts_rsp_verify.c ts_verify_ctx.c ts_lib.c ts_conf.c | ||
| 259 | SRCS+= ts_asn1.c | ||
| 260 | |||
| 261 | # txt_db/ | ||
| 262 | SRCS+=txt_db.c | ||
| 263 | |||
| 264 | # ui/ | ||
| 265 | SRCS+= ui_err.c ui_lib.c ui_openssl.c ui_util.c ui_compat.c | ||
| 266 | |||
| 267 | # whrlpool/ | ||
| 268 | SRCS+= wp_dgst.c | ||
| 269 | |||
| 270 | # x509/ | ||
| 271 | SRCS+= x509_def.c x509_d2.c x509_r2x.c x509_cmp.c | ||
| 272 | SRCS+= x509_obj.c x509_req.c x509spki.c x509_vfy.c | ||
| 273 | SRCS+= x509_set.c x509cset.c x509rset.c x509_err.c | ||
| 274 | SRCS+= x509name.c x509_v3.c x509_ext.c x509_att.c | ||
| 275 | SRCS+= x509type.c x509_lu.c x_all.c x509_txt.c | ||
| 276 | SRCS+= x509_trs.c by_file.c by_dir.c x509_vpm.c | ||
| 277 | |||
| 278 | # x509v3/ | ||
| 279 | SRCS+= v3_bcons.c v3_bitst.c v3_conf.c v3_extku.c v3_ia5.c v3_lib.c | ||
| 280 | SRCS+= v3_prn.c v3_utl.c v3err.c v3_genn.c v3_alt.c v3_skey.c v3_akey.c v3_pku.c | ||
| 281 | SRCS+= v3_int.c v3_enum.c v3_sxnet.c v3_cpols.c v3_crld.c v3_purp.c v3_info.c | ||
| 282 | SRCS+= v3_ocsp.c v3_akeya.c v3_pmaps.c v3_pcons.c v3_ncons.c v3_pcia.c v3_pci.c | ||
| 283 | SRCS+= pcy_cache.c pcy_node.c pcy_data.c pcy_map.c pcy_tree.c pcy_lib.c | ||
| 284 | SRCS+= v3_asid.c v3_addr.c | ||
| 285 | |||
| 286 | .PATH: ${.CURDIR}/arch/${MACHINE_CPU} \ | ||
| 287 | ${LCRYPTO_SRC} \ | ||
| 288 | ${LCRYPTO_SRC}/acss \ | ||
| 289 | ${LCRYPTO_SRC}/aes \ | ||
| 290 | ${LCRYPTO_SRC}/asn1 \ | ||
| 291 | ${LCRYPTO_SRC}/bf \ | ||
| 292 | ${LCRYPTO_SRC}/bio \ | ||
| 293 | ${LCRYPTO_SRC}/bn \ | ||
| 294 | ${LCRYPTO_SRC}/bn/asm \ | ||
| 295 | ${LCRYPTO_SRC}/buffer \ | ||
| 296 | ${LCRYPTO_SRC}/camellia \ | ||
| 297 | ${LCRYPTO_SRC}/cast \ | ||
| 298 | ${LCRYPTO_SRC}/cms \ | ||
| 299 | ${LCRYPTO_SRC}/comp \ | ||
| 300 | ${LCRYPTO_SRC}/conf \ | ||
| 301 | ${LCRYPTO_SRC}/des \ | ||
| 302 | ${LCRYPTO_SRC}/dh \ | ||
| 303 | ${LCRYPTO_SRC}/dsa \ | ||
| 304 | ${LCRYPTO_SRC}/dso \ | ||
| 305 | ${LCRYPTO_SRC}/ec \ | ||
| 306 | ${LCRYPTO_SRC}/ecdh \ | ||
| 307 | ${LCRYPTO_SRC}/ecdsa \ | ||
| 308 | ${LCRYPTO_SRC}/engine \ | ||
| 309 | ${LCRYPTO_SRC}/err \ | ||
| 310 | ${LCRYPTO_SRC}/evp \ | ||
| 311 | ${LCRYPTO_SRC}/md2 \ | ||
| 312 | ${LCRYPTO_SRC}/hmac \ | ||
| 313 | ${LCRYPTO_SRC}/idea \ | ||
| 314 | ${LCRYPTO_SRC}/jpake \ | ||
| 315 | ${LCRYPTO_SRC}/krb5 \ | ||
| 316 | ${LCRYPTO_SRC}/lhash \ | ||
| 317 | ${LCRYPTO_SRC}/md4 \ | ||
| 318 | ${LCRYPTO_SRC}/md5 \ | ||
| 319 | ${LCRYPTO_SRC}/mdc2 \ | ||
| 320 | ${LCRYPTO_SRC}/modes \ | ||
| 321 | ${LCRYPTO_SRC}/objects \ | ||
| 322 | ${LCRYPTO_SRC}/ocsp \ | ||
| 323 | ${LCRYPTO_SRC}/pem \ | ||
| 324 | ${LCRYPTO_SRC}/perlasm \ | ||
| 325 | ${LCRYPTO_SRC}/pkcs12 \ | ||
| 326 | ${LCRYPTO_SRC}/pkcs7 \ | ||
| 327 | ${LCRYPTO_SRC}/pqueue \ | ||
| 328 | ${LCRYPTO_SRC}/rand \ | ||
| 329 | ${LCRYPTO_SRC}/rc2 \ | ||
| 330 | ${LCRYPTO_SRC}/rc4 \ | ||
| 331 | ${LCRYPTO_SRC}/rc5 \ | ||
| 332 | ${LCRYPTO_SRC}/ripemd \ | ||
| 333 | ${LCRYPTO_SRC}/rsa \ | ||
| 334 | ${LCRYPTO_SRC}/seed \ | ||
| 335 | ${LCRYPTO_SRC}/sha \ | ||
| 336 | ${LCRYPTO_SRC}/stack \ | ||
| 337 | ${LCRYPTO_SRC}/store \ | ||
| 338 | ${LCRYPTO_SRC}/threads \ | ||
| 339 | ${LCRYPTO_SRC}/ts \ | ||
| 340 | ${LCRYPTO_SRC}/txt_db \ | ||
| 341 | ${LCRYPTO_SRC}/ui \ | ||
| 342 | ${LCRYPTO_SRC}/whrlpool \ | ||
| 343 | ${LCRYPTO_SRC}/x509 \ | ||
| 344 | ${LCRYPTO_SRC}/x509v3 | ||
| 345 | |||
| 346 | HDRS=\ | ||
| 347 | e_os.h \ | ||
| 348 | e_os2.h \ | ||
| 349 | crypto/acss/acss.h \ | ||
| 350 | crypto/aes/aes.h \ | ||
| 351 | crypto/asn1/asn1.h \ | ||
| 352 | crypto/asn1/asn1_mac.h \ | ||
| 353 | crypto/asn1/asn1t.h \ | ||
| 354 | crypto/bf/blowfish.h \ | ||
| 355 | crypto/bio/bio.h \ | ||
| 356 | crypto/bn/bn.h \ | ||
| 357 | crypto/buffer/buffer.h \ | ||
| 358 | crypto/camellia/camellia.h \ | ||
| 359 | crypto/cast/cast.h \ | ||
| 360 | crypto/cms/cms.h \ | ||
| 361 | crypto/comp/comp.h \ | ||
| 362 | crypto/conf/conf.h \ | ||
| 363 | crypto/conf/conf_api.h \ | ||
| 364 | crypto/crypto.h \ | ||
| 365 | crypto/des/des.h \ | ||
| 366 | crypto/des/des_old.h \ | ||
| 367 | crypto/dh/dh.h \ | ||
| 368 | crypto/dsa/dsa.h \ | ||
| 369 | crypto/dso/dso.h \ | ||
| 370 | crypto/ebcdic.h \ | ||
| 371 | crypto/ec/ec.h \ | ||
| 372 | crypto/ecdh/ecdh.h \ | ||
| 373 | crypto/ecdsa/ecdsa.h \ | ||
| 374 | crypto/engine/engine.h \ | ||
| 375 | crypto/err/err.h \ | ||
| 376 | crypto/evp/evp.h \ | ||
| 377 | crypto/hmac/hmac.h \ | ||
| 378 | crypto/idea/idea.h \ | ||
| 379 | crypto/krb5/krb5_asn.h \ | ||
| 380 | crypto/lhash/lhash.h \ | ||
| 381 | crypto/md2/md2.h \ | ||
| 382 | crypto/md4/md4.h \ | ||
| 383 | crypto/md5/md5.h \ | ||
| 384 | crypto/mdc2/mdc2.h \ | ||
| 385 | crypto/modes/modes.h \ | ||
| 386 | crypto/objects/objects.h \ | ||
| 387 | crypto/ocsp/ocsp.h \ | ||
| 388 | crypto/opensslv.h \ | ||
| 389 | crypto/ossl_typ.h \ | ||
| 390 | crypto/pem/pem.h \ | ||
| 391 | crypto/pem/pem2.h \ | ||
| 392 | crypto/pkcs12/pkcs12.h \ | ||
| 393 | crypto/pkcs7/pkcs7.h \ | ||
| 394 | crypto/pqueue/pqueue.h \ | ||
| 395 | crypto/rand/rand.h \ | ||
| 396 | crypto/rc2/rc2.h \ | ||
| 397 | crypto/rc4/rc4.h \ | ||
| 398 | crypto/rc5/rc5.h \ | ||
| 399 | crypto/ripemd/ripemd.h \ | ||
| 400 | crypto/rsa/rsa.h \ | ||
| 401 | crypto/seed/seed.h \ | ||
| 402 | crypto/sha/sha.h \ | ||
| 403 | crypto/stack/safestack.h \ | ||
| 404 | crypto/stack/stack.h \ | ||
| 405 | crypto/store/store.h \ | ||
| 406 | crypto/symhacks.h \ | ||
| 407 | crypto/ts/ts.h \ | ||
| 408 | crypto/txt_db/txt_db.h \ | ||
| 409 | crypto/ui/ui.h \ | ||
| 410 | crypto/ui/ui_compat.h \ | ||
| 411 | crypto/whrlpool/whrlpool.h \ | ||
| 412 | crypto/x509/x509.h \ | ||
| 413 | crypto/x509/x509_vfy.h \ | ||
| 414 | crypto/x509v3/x509v3.h | ||
| 415 | |||
| 416 | HDRS_GEN=\ | ||
| 417 | ${.CURDIR}/arch/${MACHINE_CPU}/opensslconf.h \ | ||
| 418 | ${.OBJDIR}/obj_mac.h | ||
| 419 | |||
| 420 | includes: obj_mac.h | ||
| 421 | @test -d ${DESTDIR}/usr/include/openssl || \ | ||
| 422 | mkdir ${DESTDIR}/usr/include/openssl | ||
| 423 | @cd ${SSL_SRC}; \ | ||
| 424 | for i in $(HDRS); do \ | ||
| 425 | j="cmp -s $$i ${DESTDIR}/usr/include/openssl/`basename $$i` || \ | ||
| 426 | ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i\ | ||
| 427 | ${DESTDIR}/usr/include/openssl"; \ | ||
| 428 | echo $$j; \ | ||
| 429 | eval "$$j"; \ | ||
| 430 | done; \ | ||
| 431 | for i in $(HDRS_GEN); do \ | ||
| 432 | j="cmp -s $$i ${DESTDIR}/usr/include/openssl/`basename $$i` || \ | ||
| 433 | ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i\ | ||
| 434 | ${DESTDIR}/usr/include/openssl"; \ | ||
| 435 | echo $$j; \ | ||
| 436 | eval "$$j"; \ | ||
| 437 | done; | ||
| 438 | |||
| 439 | # generated | ||
| 440 | CFLAGS+= -I${.OBJDIR} | ||
| 441 | |||
| 442 | GENERATED=obj_mac.h obj_dat.h | ||
| 443 | CLEANFILES=${GENERATED} obj_mac.num.tmp | ||
| 444 | SSL_OBJECTS=${SSL_SRC}/crypto/objects | ||
| 445 | |||
| 446 | obj_mac.h: ${SSL_OBJECTS}/objects.h ${SSL_OBJECTS}/obj_mac.num ${SSL_OBJECTS}/objects.txt | ||
| 447 | cat ${SSL_OBJECTS}/obj_mac.num > obj_mac.num.tmp | ||
| 448 | /usr/bin/perl ${SSL_OBJECTS}/objects.pl ${SSL_OBJECTS}/objects.txt obj_mac.num.tmp obj_mac.h | ||
| 449 | |||
| 450 | obj_dat.h: obj_mac.h | ||
| 451 | /usr/bin/perl ${SSL_OBJECTS}/obj_dat.pl obj_mac.h obj_dat.h | ||
| 452 | |||
| 453 | .if (${MACHINE_ARCH} == "vax") | ||
| 454 | # egcs bombs optimising these files | ||
| 455 | a_strnid.o: | ||
| 456 | ${CC} ${CFLAGS} -O0 ${CPPFLAGS} -c ${.IMPSRC} | ||
| 457 | a_strnid.po: | ||
| 458 | ${CC} ${CFLAGS} -O0 ${CPPFLAGS} -c ${.IMPSRC} -o $@ | ||
| 459 | des_enc.o: | ||
| 460 | ${CC} ${CFLAGS} -O1 ${CPPFLAGS} -c ${.IMPSRC} | ||
| 461 | des_enc.po: | ||
| 462 | ${CC} ${CFLAGS} -O1 ${CPPFLAGS} -c ${.IMPSRC} -o $@ | ||
| 463 | .endif | ||
| 464 | |||
| 465 | .if (${MACHINE_ARCH} == "i386") | ||
| 466 | SRCS+= wp_block.c | ||
| 467 | CFLAGS+= -DAES_ASM | ||
| 468 | CFLAGS+= -DMD5_ASM | ||
| 469 | CFLAGS+= -DSHA1_ASM | ||
| 470 | CFLAGS+= -DSHA256_ASM | ||
| 471 | CFLAGS+= -DSHA512_ASM | ||
| 472 | CFLAGS+= -DRMD160_ASM | ||
| 473 | CFLAGS+= -DOPENBSD_DES_ASM | ||
| 474 | CFLAGS+= -DOPENSSL_BN_ASM_PART_WORDS | ||
| 475 | CFLAGS+= -DOPENSSL_BN_ASM_MONT | ||
| 476 | CFLAGS+= -DOPENSSL_CPUID_OBJ | ||
| 477 | CFLAGS+= -DWHIRLPOOL_ASM | ||
| 478 | CFLAGS+= -DOPENSSL_IA32_SSE2 | ||
| 479 | # XXX bad relocation in CAST ASM code leads to TEXTREL for shared libcrypto | ||
| 480 | #CFLAGS+= -DOPENBSD_CAST_ASM | ||
| 481 | SSLASM=\ | ||
| 482 | aes aes-586 \ | ||
| 483 | bf bf-586 \ | ||
| 484 | bn bn-586 \ | ||
| 485 | bn co-586 \ | ||
| 486 | bn x86-mont \ | ||
| 487 | des crypt586 \ | ||
| 488 | des des-586 \ | ||
| 489 | md5 md5-586 \ | ||
| 490 | rc4 rc4-586 \ | ||
| 491 | ripemd rmd-586 \ | ||
| 492 | sha sha1-586 \ | ||
| 493 | sha sha256-586 \ | ||
| 494 | sha sha512-586 \ | ||
| 495 | whrlpool wp-mmx | ||
| 496 | .for dir f in ${SSLASM} | ||
| 497 | SRCS+= ${f}.S | ||
| 498 | GENERATED+=${f}.S | ||
| 499 | ${f}.S: ${LCRYPTO_SRC}/${dir}/asm/${f}.pl ${LCRYPTO_SRC}/perlasm/x86gas.pl | ||
| 500 | /usr/bin/perl -I${LCRYPTO_SRC}/perlasm -I${LCRYPTO_SRC}/${dir}/asm \ | ||
| 501 | ${LCRYPTO_SRC}/${dir}/asm/${f}.pl \ | ||
| 502 | openbsd-elf ${CFLAGS} 386 ${PICFLAG} > ${.TARGET} | ||
| 503 | .endfor | ||
| 504 | SRCS+= x86cpuid.S | ||
| 505 | GENERATED+=x86cpuid.S | ||
| 506 | x86cpuid.S: ${LCRYPTO_SRC}/x86cpuid.pl ${LCRYPTO_SRC}/perlasm/x86gas.pl | ||
| 507 | /usr/bin/perl -I${LCRYPTO_SRC}/perlasm ${LCRYPTO_SRC}/x86cpuid.pl \ | ||
| 508 | openbsd-elf ${CFLAGS} 386 ${PICFLAG} > ${.TARGET} | ||
| 509 | SRCS+= bf_cbc.c | ||
| 510 | .elif (${MACHINE_ARCH} == "amd64") | ||
| 511 | SRCS+= bf_enc.c des_enc.c | ||
| 512 | SRCS+= x86_64-gcc.c | ||
| 513 | SRCS+= fcrypt_b.c | ||
| 514 | CFLAGS+= -DAES_ASM | ||
| 515 | CFLAGS+= -DMD5_ASM | ||
| 516 | CFLAGS+= -DSHA1_ASM | ||
| 517 | CFLAGS+= -DSHA256_ASM | ||
| 518 | CFLAGS+= -DSHA512_ASM | ||
| 519 | CFLAGS+= -DOPENSSL_CPUID_OBJ | ||
| 520 | CFLAGS+= -DOPENSSL_BN_ASM_MONT | ||
| 521 | CFLAGS+= -DWHIRLPOOL_ASM | ||
| 522 | SSLASM=\ | ||
| 523 | aes aes-x86_64 \ | ||
| 524 | aes aesni-x86_64 \ | ||
| 525 | bn x86_64-mont \ | ||
| 526 | md5 md5-x86_64 \ | ||
| 527 | rc4 rc4-x86_64 \ | ||
| 528 | sha sha1-x86_64 \ | ||
| 529 | whrlpool wp-x86_64 | ||
| 530 | .for dir f in ${SSLASM} | ||
| 531 | SRCS+= ${f}.S | ||
| 532 | GENERATED+=${f}.S | ||
| 533 | ${f}.S: ${LCRYPTO_SRC}/${dir}/asm/${f}.pl | ||
| 534 | (cd ${LCRYPTO_SRC}/${dir} ; \ | ||
| 535 | /usr/bin/perl ./asm/${f}.pl openbsd-elf) > ${.TARGET} | ||
| 536 | .endfor | ||
| 537 | SRCS+= x86_64cpuid.S sha256-x86_64.S sha512-x86_64.S | ||
| 538 | GENERATED+=x86_64cpuid.S sha256-x86_64.S sha512-x86_64.S | ||
| 539 | x86_64cpuid.S: ${LCRYPTO_SRC}/x86_64cpuid.pl | ||
| 540 | (cd ${LCRYPTO_SRC}/${dir} ; \ | ||
| 541 | /usr/bin/perl ./x86_64cpuid.pl) > ${.TARGET} | ||
| 542 | sha256-x86_64.S: ${LCRYPTO_SRC}/sha/asm/sha512-x86_64.pl | ||
| 543 | cd ${LCRYPTO_SRC}/sha/asm ; \ | ||
| 544 | /usr/bin/perl ./sha512-x86_64.pl ${.OBJDIR}/${.TARGET} | ||
| 545 | sha512-x86_64.S: ${LCRYPTO_SRC}/sha/asm/sha512-x86_64.pl | ||
| 546 | cd ${LCRYPTO_SRC}/sha/asm ; \ | ||
| 547 | /usr/bin/perl ./sha512-x86_64.pl ${.OBJDIR}/${.TARGET} | ||
| 548 | .else | ||
| 549 | # XXX ppccpuid.pl | ||
| 550 | CFLAGS+=-DOPENSSL_NO_ASM | ||
| 551 | SRCS+= mem_clr.c | ||
| 552 | SRCS+= aes_core.c aes_cbc.c | ||
| 553 | SRCS+= bf_enc.c | ||
| 554 | SRCS+= bn_asm.c | ||
| 555 | SRCS+= des_enc.c fcrypt_b.c | ||
| 556 | SRCS+= rc4_enc.c rc4_skey.c | ||
| 557 | SRCS+= wp_block.c | ||
| 558 | .endif | ||
| 559 | |||
| 560 | all beforedepend: ${GENERATED} | ||
| 561 | |||
| 562 | .include <bsd.lib.mk> | ||
diff --git a/src/lib/libssl/crypto/arch/alpha/opensslconf.h b/src/lib/libssl/crypto/arch/alpha/opensslconf.h new file mode 100644 index 0000000000..3dfec8c8b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/alpha/opensslconf.h | |||
| @@ -0,0 +1,257 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #define RC4_CHUNK unsigned long | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #undef BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #define SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #undef THIRTY_TWO_BIT | ||
| 172 | #endif | ||
| 173 | |||
| 174 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 175 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 176 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 177 | * speedup on x86 */ | ||
| 178 | #undef RC4_INDEX | ||
| 179 | #endif | ||
| 180 | |||
| 181 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 182 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 183 | #define BF_PTR | ||
| 184 | #endif /* HEADER_BF_LOCL_H */ | ||
| 185 | |||
| 186 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 187 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 188 | #ifndef DES_DEFAULT_OPTIONS | ||
| 189 | /* the following is tweaked from a config script, that is why it is a | ||
| 190 | * protected undef/define */ | ||
| 191 | #ifndef DES_PTR | ||
| 192 | #define DES_PTR | ||
| 193 | #endif | ||
| 194 | |||
| 195 | /* This helps C compiler generate the correct code for multiple functional | ||
| 196 | * units. It reduces register dependancies at the expense of 2 more | ||
| 197 | * registers */ | ||
| 198 | #ifndef DES_RISC1 | ||
| 199 | #undef DES_RISC1 | ||
| 200 | #endif | ||
| 201 | |||
| 202 | #ifndef DES_RISC2 | ||
| 203 | #define DES_RISC2 | ||
| 204 | #endif | ||
| 205 | |||
| 206 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 207 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 208 | #endif | ||
| 209 | |||
| 210 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 211 | * Very mucy CPU dependant */ | ||
| 212 | #ifndef DES_UNROLL | ||
| 213 | #undef DES_UNROLL | ||
| 214 | #endif | ||
| 215 | |||
| 216 | /* These default values were supplied by | ||
| 217 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 218 | * They are only used if nothing else has been defined */ | ||
| 219 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 220 | /* Special defines which change the way the code is built depending on the | ||
| 221 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 222 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 223 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 224 | there's no way to tell at compile time what it is you're running on */ | ||
| 225 | |||
| 226 | #if defined( sun ) /* Newer Sparc's */ | ||
| 227 | # define DES_PTR | ||
| 228 | # define DES_RISC1 | ||
| 229 | # define DES_UNROLL | ||
| 230 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 231 | # define DES_PTR | ||
| 232 | # define DES_RISC2 | ||
| 233 | # define DES_UNROLL | ||
| 234 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 235 | # define DES_PTR | ||
| 236 | # define DES_RISC2 | ||
| 237 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 238 | /* Unknown */ | ||
| 239 | #elif defined( __hpux ) /* HP-PA */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __aux ) /* 68K */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 244 | # define DES_UNROLL | ||
| 245 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 246 | # define DES_PTR | ||
| 247 | # define DES_RISC2 | ||
| 248 | # define DES_UNROLL | ||
| 249 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 250 | # define DES_PTR | ||
| 251 | # define DES_RISC1 | ||
| 252 | # define DES_UNROLL | ||
| 253 | #endif /* Systems-specific speed defines */ | ||
| 254 | #endif | ||
| 255 | |||
| 256 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 257 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/amd64/opensslconf.h b/src/lib/libssl/crypto/arch/amd64/opensslconf.h new file mode 100644 index 0000000000..6a6029013f --- /dev/null +++ b/src/lib/libssl/crypto/arch/amd64/opensslconf.h | |||
| @@ -0,0 +1,257 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #define RC4_CHUNK unsigned long | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #undef BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #define SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #undef THIRTY_TWO_BIT | ||
| 172 | #endif | ||
| 173 | |||
| 174 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 175 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 176 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 177 | * speedup on x86 */ | ||
| 178 | #undef RC4_INDEX | ||
| 179 | #endif | ||
| 180 | |||
| 181 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 182 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 183 | #undef BF_PTR | ||
| 184 | #endif /* HEADER_BF_LOCL_H */ | ||
| 185 | |||
| 186 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 187 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 188 | #ifndef DES_DEFAULT_OPTIONS | ||
| 189 | /* the following is tweaked from a config script, that is why it is a | ||
| 190 | * protected undef/define */ | ||
| 191 | #ifndef DES_PTR | ||
| 192 | #undef DES_PTR | ||
| 193 | #endif | ||
| 194 | |||
| 195 | /* This helps C compiler generate the correct code for multiple functional | ||
| 196 | * units. It reduces register dependancies at the expense of 2 more | ||
| 197 | * registers */ | ||
| 198 | #ifndef DES_RISC1 | ||
| 199 | #undef DES_RISC1 | ||
| 200 | #endif | ||
| 201 | |||
| 202 | #ifndef DES_RISC2 | ||
| 203 | #undef DES_RISC2 | ||
| 204 | #endif | ||
| 205 | |||
| 206 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 207 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 208 | #endif | ||
| 209 | |||
| 210 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 211 | * Very mucy CPU dependant */ | ||
| 212 | #ifndef DES_UNROLL | ||
| 213 | #define DES_UNROLL | ||
| 214 | #endif | ||
| 215 | |||
| 216 | /* These default values were supplied by | ||
| 217 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 218 | * They are only used if nothing else has been defined */ | ||
| 219 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 220 | /* Special defines which change the way the code is built depending on the | ||
| 221 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 222 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 223 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 224 | there's no way to tell at compile time what it is you're running on */ | ||
| 225 | |||
| 226 | #if defined( sun ) /* Newer Sparc's */ | ||
| 227 | # define DES_PTR | ||
| 228 | # define DES_RISC1 | ||
| 229 | # define DES_UNROLL | ||
| 230 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 231 | # define DES_PTR | ||
| 232 | # define DES_RISC2 | ||
| 233 | # define DES_UNROLL | ||
| 234 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 235 | # define DES_PTR | ||
| 236 | # define DES_RISC2 | ||
| 237 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 238 | /* Unknown */ | ||
| 239 | #elif defined( __hpux ) /* HP-PA */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __aux ) /* 68K */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 244 | # define DES_UNROLL | ||
| 245 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 246 | # define DES_PTR | ||
| 247 | # define DES_RISC2 | ||
| 248 | # define DES_UNROLL | ||
| 249 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 250 | # define DES_PTR | ||
| 251 | # define DES_RISC1 | ||
| 252 | # define DES_UNROLL | ||
| 253 | #endif /* Systems-specific speed defines */ | ||
| 254 | #endif | ||
| 255 | |||
| 256 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 257 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/arm/opensslconf.h b/src/lib/libssl/crypto/arch/arm/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/arm/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/hppa/opensslconf.h b/src/lib/libssl/crypto/arch/hppa/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/hppa/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/hppa64/opensslconf.h b/src/lib/libssl/crypto/arch/hppa64/opensslconf.h new file mode 100644 index 0000000000..7199268572 --- /dev/null +++ b/src/lib/libssl/crypto/arch/hppa64/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #undef BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #define SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #undef THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #define DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/i386/opensslconf.h b/src/lib/libssl/crypto/arch/i386/opensslconf.h new file mode 100644 index 0000000000..b9e4249fed --- /dev/null +++ b/src/lib/libssl/crypto/arch/i386/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #define DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #define DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/m68k/opensslconf.h b/src/lib/libssl/crypto/arch/m68k/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/m68k/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/m88k/opensslconf.h b/src/lib/libssl/crypto/arch/m88k/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/m88k/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/mips64/opensslconf.h b/src/lib/libssl/crypto/arch/mips64/opensslconf.h new file mode 100644 index 0000000000..e481da68bf --- /dev/null +++ b/src/lib/libssl/crypto/arch/mips64/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #define RC4_CHUNK unsigned long | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #undef BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #define SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #undef THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #undef RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #define BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #define DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #define DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #undef DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/powerpc/opensslconf.h b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/powerpc/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/sh/opensslconf.h b/src/lib/libssl/crypto/arch/sh/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/sh/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/sparc/opensslconf.h b/src/lib/libssl/crypto/arch/sparc/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/sparc/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/sparc64/opensslconf.h b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h new file mode 100644 index 0000000000..e481da68bf --- /dev/null +++ b/src/lib/libssl/crypto/arch/sparc64/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #define RC4_CHUNK unsigned long | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #undef BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #define SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #undef THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #undef RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #define BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #define DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #define DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #undef DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/arch/vax/bn_asm_vax.S b/src/lib/libssl/crypto/arch/vax/bn_asm_vax.S new file mode 100644 index 0000000000..bd067a55d3 --- /dev/null +++ b/src/lib/libssl/crypto/arch/vax/bn_asm_vax.S | |||
| @@ -0,0 +1,436 @@ | |||
| 1 | # $OpenBSD: bn_asm_vax.S,v 1.1 2003/11/18 12:39:05 markus Exp $ | ||
| 2 | # $NetBSD: bn_asm_vax.S,v 1.1 2003/11/03 10:22:28 ragge Exp $ | ||
| 3 | |||
| 4 | #include <machine/asm.h> | ||
| 5 | |||
| 6 | # w.j.m. 15-jan-1999 | ||
| 7 | # | ||
| 8 | # it's magic ... | ||
| 9 | # | ||
| 10 | # ULONG bn_mul_add_words(ULONG r[],ULONG a[],int n,ULONG w) { | ||
| 11 | # ULONG c = 0; | ||
| 12 | # int i; | ||
| 13 | # for(i = 0; i < n; i++) <c,r[i]> := r[i] + c + a[i] * w ; | ||
| 14 | # return c; | ||
| 15 | # } | ||
| 16 | |||
| 17 | ENTRY(bn_mul_add_words,R6) | ||
| 18 | movl 4(ap),r2 # *r | ||
| 19 | movl 8(ap),r3 # *a | ||
| 20 | movl 12(ap),r4 # n | ||
| 21 | movl 16(ap),r5 # w | ||
| 22 | clrl r6 # return value ("carry") | ||
| 23 | |||
| 24 | 0: emul r5,(r3),(r2),r0 # w * a[0] + r[0] -> r0 | ||
| 25 | |||
| 26 | # fixup for "negative" r[] | ||
| 27 | tstl (r2) | ||
| 28 | bgeq 1f | ||
| 29 | incl r1 # add 1 to highword | ||
| 30 | |||
| 31 | 1: # add saved carry to result | ||
| 32 | addl2 r6,r0 | ||
| 33 | adwc $0,r1 | ||
| 34 | |||
| 35 | # combined fixup for "negative" w, a[] | ||
| 36 | tstl r5 # if w is negative... | ||
| 37 | bgeq 1f | ||
| 38 | addl2 (r3),r1 # ...add a[0] again to highword | ||
| 39 | 1: tstl (r3) # if a[0] is negative... | ||
| 40 | bgeq 1f | ||
| 41 | addl2 r5,r1 # ...add w again to highword | ||
| 42 | 1: | ||
| 43 | movl r0,(r2)+ # save low word in dest & advance *r | ||
| 44 | addl2 $4,r3 # advance *a | ||
| 45 | movl r1,r6 # high word in r6 for return value | ||
| 46 | |||
| 47 | sobgtr r4,0b # loop? | ||
| 48 | |||
| 49 | movl r6,r0 | ||
| 50 | ret | ||
| 51 | |||
| 52 | # .title vax_bn_mul_words unsigned multiply & add, 32*32+32=>64 | ||
| 53 | #; | ||
| 54 | #; w.j.m. 15-jan-1999 | ||
| 55 | #; | ||
| 56 | #; it's magic ... | ||
| 57 | #; | ||
| 58 | #; ULONG bn_mul_words(ULONG r[],ULONG a[],int n,ULONG w) { | ||
| 59 | #; ULONG c = 0; | ||
| 60 | #; int i; | ||
| 61 | #; for(i = 0; i < num; i++) <c,r[i]> := a[i] * w + c ; | ||
| 62 | #; return(c); | ||
| 63 | #; } | ||
| 64 | # | ||
| 65 | |||
| 66 | ENTRY(bn_mul_words,R6) | ||
| 67 | movl 4(ap),r2 # *r | ||
| 68 | movl 8(ap),r3 # *a | ||
| 69 | movl 12(ap),r4 # n | ||
| 70 | movl 16(ap),r5 # w | ||
| 71 | clrl r6 # carry | ||
| 72 | |||
| 73 | 0: emul r5,(r3),r6,r0 # w * a[0] + carry -> r0 | ||
| 74 | |||
| 75 | # fixup for "negative" carry | ||
| 76 | tstl r6 | ||
| 77 | bgeq 1f | ||
| 78 | incl r1 | ||
| 79 | |||
| 80 | 1: # combined fixup for "negative" w, a[] | ||
| 81 | tstl r5 | ||
| 82 | bgeq 1f | ||
| 83 | addl2 (r3),r1 | ||
| 84 | 1: tstl (r3) | ||
| 85 | bgeq 1f | ||
| 86 | addl2 r5,r1 | ||
| 87 | |||
| 88 | 1: movl r0,(r2)+ | ||
| 89 | addl2 $4,r3 | ||
| 90 | movl r1,r6 | ||
| 91 | |||
| 92 | sobgtr r4,0b | ||
| 93 | |||
| 94 | movl r6,r0 | ||
| 95 | ret | ||
| 96 | |||
| 97 | |||
| 98 | |||
| 99 | # .title vax_bn_sqr_words unsigned square, 32*32=>64 | ||
| 100 | #; | ||
| 101 | #; w.j.m. 15-jan-1999 | ||
| 102 | #; | ||
| 103 | #; it's magic ... | ||
| 104 | #; | ||
| 105 | #; void bn_sqr_words(ULONG r[],ULONG a[],int n) { | ||
| 106 | #; int i; | ||
| 107 | #; for(i = 0; i < n; i++) <r[2*i+1],r[2*i]> := a[i] * a[i] ; | ||
| 108 | #; } | ||
| 109 | # | ||
| 110 | |||
| 111 | ENTRY(bn_sqr_words,0) | ||
| 112 | movl 4(ap),r2 # r | ||
| 113 | movl 8(ap),r3 # a | ||
| 114 | movl 12(ap),r4 # n | ||
| 115 | |||
| 116 | 0: movl (r3)+,r5 # r5 = a[] & advance | ||
| 117 | |||
| 118 | emul r5,r5,$0,r0 # a[0] * a[0] + 0 -> r0 | ||
| 119 | |||
| 120 | # fixup for "negative" a[] | ||
| 121 | tstl r5 | ||
| 122 | bgeq 1f | ||
| 123 | addl2 r5,r1 | ||
| 124 | addl2 r5,r1 | ||
| 125 | |||
| 126 | 1: movq r0,(r2)+ # store 64-bit result | ||
| 127 | |||
| 128 | sobgtr r4,0b # loop | ||
| 129 | |||
| 130 | ret | ||
| 131 | |||
| 132 | |||
| 133 | # .title vax_bn_div_words unsigned divide | ||
| 134 | #; | ||
| 135 | #; Richard Levitte 20-Nov-2000 | ||
| 136 | #; | ||
| 137 | #; ULONG bn_div_words(ULONG h, ULONG l, ULONG d) | ||
| 138 | #; { | ||
| 139 | #; return ((ULONG)((((ULLONG)h)<<32)|l) / (ULLONG)d); | ||
| 140 | #; } | ||
| 141 | #; | ||
| 142 | #; Using EDIV would be very easy, if it didn't do signed calculations. | ||
| 143 | #; Any time any of the input numbers are signed, there are problems, | ||
| 144 | #; usually with integer overflow, at which point it returns useless | ||
| 145 | #; data (the quotient gets the value of l, and the remainder becomes 0). | ||
| 146 | #; | ||
| 147 | #; If it was just for the dividend, it would be very easy, just divide | ||
| 148 | #; it by 2 (unsigned), do the division, multiply the resulting quotient | ||
| 149 | #; and remainder by 2, add the bit that was dropped when dividing by 2 | ||
| 150 | #; to the remainder, and do some adjustment so the remainder doesn't | ||
| 151 | #; end up larger than the divisor. For some cases when the divisor is | ||
| 152 | #; negative (from EDIV's point of view, i.e. when the highest bit is set), | ||
| 153 | #; dividing the dividend by 2 isn't enough, and since some operations | ||
| 154 | #; might generate integer overflows even when the dividend is divided by | ||
| 155 | #; 4 (when the high part of the shifted down dividend ends up being exactly | ||
| 156 | #; half of the divisor, the result is the quotient 0x80000000, which is | ||
| 157 | #; negative...) it needs to be divided by 8. Furthermore, the divisor needs | ||
| 158 | #; to be divided by 2 (unsigned) as well, to avoid more problems with the sign. | ||
| 159 | #; In this case, a little extra fiddling with the remainder is required. | ||
| 160 | #; | ||
| 161 | #; So, the simplest way to handle this is always to divide the dividend | ||
| 162 | #; by 8, and to divide the divisor by 2 if it's highest bit is set. | ||
| 163 | #; After EDIV has been used, the quotient gets multiplied by 8 if the | ||
| 164 | #; original divisor was positive, otherwise 4. The remainder, oddly | ||
| 165 | #; enough, is *always* multiplied by 8. | ||
| 166 | #; NOTE: in the case mentioned above, where the high part of the shifted | ||
| 167 | #; down dividend ends up being exactly half the shifted down divisor, we | ||
| 168 | #; end up with a 33 bit quotient. That's no problem however, it usually | ||
| 169 | #; means we have ended up with a too large remainder as well, and the | ||
| 170 | #; problem is fixed by the last part of the algorithm (next paragraph). | ||
| 171 | #; | ||
| 172 | #; The routine ends with comparing the resulting remainder with the | ||
| 173 | #; original divisor and if the remainder is larger, subtract the | ||
| 174 | #; original divisor from it, and increase the quotient by 1. This is | ||
| 175 | #; done until the remainder is smaller than the divisor. | ||
| 176 | #; | ||
| 177 | #; The complete algorithm looks like this: | ||
| 178 | #; | ||
| 179 | #; d' = d | ||
| 180 | #; l' = l & 7 | ||
| 181 | #; [h,l] = [h,l] >> 3 | ||
| 182 | #; [q,r] = floor([h,l] / d) # This is the EDIV operation | ||
| 183 | #; if (q < 0) q = -q # I doubt this is necessary any more | ||
| 184 | #; | ||
| 185 | #; r' = r >> 29 | ||
| 186 | #; if (d' >= 0) | ||
| 187 | #; q' = q >> 29 | ||
| 188 | #; q = q << 3 | ||
| 189 | #; else | ||
| 190 | #; q' = q >> 30 | ||
| 191 | #; q = q << 2 | ||
| 192 | #; r = (r << 3) + l' | ||
| 193 | #; | ||
| 194 | #; if (d' < 0) | ||
| 195 | #; { | ||
| 196 | #; [r',r] = [r',r] - q | ||
| 197 | #; while ([r',r] < 0) | ||
| 198 | #; { | ||
| 199 | #; [r',r] = [r',r] + d | ||
| 200 | #; [q',q] = [q',q] - 1 | ||
| 201 | #; } | ||
| 202 | #; } | ||
| 203 | #; | ||
| 204 | #; while ([r',r] >= d') | ||
| 205 | #; { | ||
| 206 | #; [r',r] = [r',r] - d' | ||
| 207 | #; [q',q] = [q',q] + 1 | ||
| 208 | #; } | ||
| 209 | #; | ||
| 210 | #; return q | ||
| 211 | # | ||
| 212 | #;r2 = l, q | ||
| 213 | #;r3 = h, r | ||
| 214 | #;r4 = d | ||
| 215 | #;r5 = l' | ||
| 216 | #;r6 = r' | ||
| 217 | #;r7 = d' | ||
| 218 | #;r8 = q' | ||
| 219 | # | ||
| 220 | |||
| 221 | ENTRY(bn_div_words,R6|R7|R8) | ||
| 222 | movl 4(ap),r3 # h | ||
| 223 | movl 8(ap),r2 # l | ||
| 224 | movl 12(ap),r4 # d | ||
| 225 | |||
| 226 | bicl3 $-8,r2,r5 # l' = l & 7 | ||
| 227 | bicl3 $7,r2,r2 | ||
| 228 | |||
| 229 | bicl3 $-8,r3,r6 | ||
| 230 | bicl3 $7,r3,r3 | ||
| 231 | |||
| 232 | addl2 r6,r2 | ||
| 233 | |||
| 234 | rotl $-3,r2,r2 # l = l >> 3 | ||
| 235 | rotl $-3,r3,r3 # h = h >> 3 | ||
| 236 | |||
| 237 | movl r4,r7 # d' = d | ||
| 238 | |||
| 239 | clrl r6 # r' = 0 | ||
| 240 | clrl r8 # q' = 0 | ||
| 241 | |||
| 242 | tstl r4 | ||
| 243 | beql 0f # Uh-oh, the divisor is 0... | ||
| 244 | bgtr 1f | ||
| 245 | rotl $-1,r4,r4 # If d is negative, shift it right. | ||
| 246 | bicl2 $0x80000000,r4 # Since d is then a large number, the | ||
| 247 | # lowest bit is insignificant | ||
| 248 | # (contradict that, and I'll fix the problem!) | ||
| 249 | 1: | ||
| 250 | ediv r4,r2,r2,r3 # Do the actual division | ||
| 251 | |||
| 252 | tstl r2 | ||
| 253 | bgeq 1f | ||
| 254 | mnegl r2,r2 # if q < 0, negate it | ||
| 255 | 1: | ||
| 256 | tstl r7 | ||
| 257 | blss 1f | ||
| 258 | rotl $3,r2,r2 # q = q << 3 | ||
| 259 | bicl3 $-8,r2,r8 # q' gets the high bits from q | ||
| 260 | bicl3 $7,r2,r2 | ||
| 261 | brb 2f | ||
| 262 | |||
| 263 | 1: # else | ||
| 264 | rotl $2,r2,r2 # q = q << 2 | ||
| 265 | bicl3 $-4,r2,r8 # q' gets the high bits from q | ||
| 266 | bicl3 $3,r2,r2 | ||
| 267 | 2: | ||
| 268 | rotl $3,r3,r3 # r = r << 3 | ||
| 269 | bicl3 $-8,r3,r6 # r' gets the high bits from r | ||
| 270 | bicl3 $7,r3,r3 | ||
| 271 | addl2 r5,r3 # r = r + l' | ||
| 272 | |||
| 273 | tstl r7 | ||
| 274 | bgeq 5f | ||
| 275 | bitl $1,r7 | ||
| 276 | beql 5f # if d' < 0 && d' & 1 | ||
| 277 | subl2 r2,r3 # [r',r] = [r',r] - [q',q] | ||
| 278 | sbwc r8,r6 | ||
| 279 | 3: | ||
| 280 | bgeq 5f # while r < 0 | ||
| 281 | decl r2 # [q',q] = [q',q] - 1 | ||
| 282 | sbwc $0,r8 | ||
| 283 | addl2 r7,r3 # [r',r] = [r',r] + d' | ||
| 284 | adwc $0,r6 | ||
| 285 | brb 3b | ||
| 286 | |||
| 287 | # The return points are placed in the middle to keep a short distance from | ||
| 288 | # all the branch points | ||
| 289 | 1: | ||
| 290 | # movl r3,r1 | ||
| 291 | movl r2,r0 | ||
| 292 | ret | ||
| 293 | 0: | ||
| 294 | movl $-1,r0 | ||
| 295 | ret | ||
| 296 | 5: | ||
| 297 | tstl r6 | ||
| 298 | bneq 6f | ||
| 299 | cmpl r3,r7 | ||
| 300 | blssu 1b # while [r',r] >= d' | ||
| 301 | 6: | ||
| 302 | subl2 r7,r3 # [r',r] = [r',r] - d' | ||
| 303 | sbwc $0,r6 | ||
| 304 | incl r2 # [q',q] = [q',q] + 1 | ||
| 305 | adwc $0,r8 | ||
| 306 | brb 5b | ||
| 307 | |||
| 308 | |||
| 309 | |||
| 310 | # .title vax_bn_add_words unsigned add of two arrays | ||
| 311 | #; | ||
| 312 | #; Richard Levitte 20-Nov-2000 | ||
| 313 | #; | ||
| 314 | #; ULONG bn_add_words(ULONG r[], ULONG a[], ULONG b[], int n) { | ||
| 315 | #; ULONG c = 0; | ||
| 316 | #; int i; | ||
| 317 | #; for (i = 0; i < n; i++) <c,r[i]> = a[i] + b[i] + c; | ||
| 318 | #; return(c); | ||
| 319 | #; } | ||
| 320 | # | ||
| 321 | |||
| 322 | ENTRY(bn_add_words,0) | ||
| 323 | movl 4(ap),r2 # r | ||
| 324 | movl 8(ap),r3 # a | ||
| 325 | movl 12(ap),r4 # b | ||
| 326 | movl 16(ap),r5 # n | ||
| 327 | clrl r0 | ||
| 328 | |||
| 329 | tstl r5 | ||
| 330 | bleq 1f | ||
| 331 | |||
| 332 | 0: movl (r3)+,r1 # carry untouched | ||
| 333 | adwc (r4)+,r1 # carry used and touched | ||
| 334 | movl r1,(r2)+ # carry untouched | ||
| 335 | sobgtr r5,0b # carry untouched | ||
| 336 | |||
| 337 | adwc $0,r0 | ||
| 338 | 1: ret | ||
| 339 | |||
| 340 | #; | ||
| 341 | #; Richard Levitte 20-Nov-2000 | ||
| 342 | #; | ||
| 343 | #; ULONG bn_sub_words(ULONG r[], ULONG a[], ULONG b[], int n) { | ||
| 344 | #; ULONG c = 0; | ||
| 345 | #; int i; | ||
| 346 | #; for (i = 0; i < n; i++) <c,r[i]> = a[i] - b[i] - c; | ||
| 347 | #; return(c); | ||
| 348 | #; } | ||
| 349 | # | ||
| 350 | |||
| 351 | ENTRY(bn_sub_words,R6) | ||
| 352 | movl 4(ap),r2 # r | ||
| 353 | movl 8(ap),r3 # a | ||
| 354 | movl 12(ap),r4 # b | ||
| 355 | movl 16(ap),r5 # n | ||
| 356 | clrl r0 | ||
| 357 | |||
| 358 | tstl r5 | ||
| 359 | bleq 1f | ||
| 360 | |||
| 361 | 0: movl (r3)+,r6 # carry untouched | ||
| 362 | sbwc (r4)+,r6 # carry used and touched | ||
| 363 | movl r6,(r2)+ # carry untouched | ||
| 364 | sobgtr r5,0b # carry untouched | ||
| 365 | |||
| 366 | 1: adwc $0,r0 | ||
| 367 | ret | ||
| 368 | |||
| 369 | # | ||
| 370 | # Ragge 20-Sep-2003 | ||
| 371 | # | ||
| 372 | # Multiply a vector of 4/8 longword by another. | ||
| 373 | # Uses two loops and 16/64 emuls. | ||
| 374 | # | ||
| 375 | |||
| 376 | ENTRY(bn_mul_comba4,R6|R7|R8|R9) | ||
| 377 | movl $4,r9 # 4*4 | ||
| 378 | brb 6f | ||
| 379 | |||
| 380 | ENTRY(bn_mul_comba8,R6|R7|R8|R9) | ||
| 381 | movl $8,r9 # 8*8 | ||
| 382 | |||
| 383 | 6: movl 8(ap),r3 # a[] | ||
| 384 | movl 12(ap),r7 # b[] | ||
| 385 | brb 5f | ||
| 386 | |||
| 387 | ENTRY(bn_sqr_comba4,R6|R7|R8|R9) | ||
| 388 | movl $4,r9 # 4*4 | ||
| 389 | brb 0f | ||
| 390 | |||
| 391 | ENTRY(bn_sqr_comba8,R6|R7|R8|R9) | ||
| 392 | movl $8,r9 # 8*8 | ||
| 393 | |||
| 394 | 0: | ||
| 395 | movl 8(ap),r3 # a[] | ||
| 396 | movl r3,r7 # a[] | ||
| 397 | |||
| 398 | 5: movl 4(ap),r5 # r[] | ||
| 399 | movl r9,r8 | ||
| 400 | |||
| 401 | clrq (r5) # clear destinatino, for add. | ||
| 402 | clrq 8(r5) | ||
| 403 | clrq 16(r5) # these only needed for comba8 | ||
| 404 | clrq 24(r5) | ||
| 405 | |||
| 406 | 2: clrl r4 # carry | ||
| 407 | movl r9,r6 # inner loop count | ||
| 408 | movl (r7)+,r2 # value to multiply with | ||
| 409 | |||
| 410 | 1: emul r2,(r3),r4,r0 | ||
| 411 | tstl r4 | ||
| 412 | bgeq 3f | ||
| 413 | incl r1 | ||
| 414 | 3: tstl r2 | ||
| 415 | bgeq 3f | ||
| 416 | addl2 (r3),r1 | ||
| 417 | 3: tstl (r3) | ||
| 418 | bgeq 3f | ||
| 419 | addl2 r2,r1 | ||
| 420 | |||
| 421 | 3: addl2 r0,(r5)+ # add to destination | ||
| 422 | adwc $0,r1 # remember carry | ||
| 423 | movl r1,r4 # add carry in next emul | ||
| 424 | addl2 $4,r3 | ||
| 425 | sobgtr r6,1b | ||
| 426 | |||
| 427 | movl r4,(r5) # save highest add result | ||
| 428 | |||
| 429 | ashl $2,r9,r4 | ||
| 430 | subl2 r4,r3 | ||
| 431 | subl2 $4,r4 | ||
| 432 | subl2 r4,r5 | ||
| 433 | |||
| 434 | sobgtr r8,2b | ||
| 435 | |||
| 436 | ret | ||
diff --git a/src/lib/libssl/crypto/arch/vax/opensslconf.h b/src/lib/libssl/crypto/arch/vax/opensslconf.h new file mode 100644 index 0000000000..7c7015c9b7 --- /dev/null +++ b/src/lib/libssl/crypto/arch/vax/opensslconf.h | |||
| @@ -0,0 +1,259 @@ | |||
| 1 | /* opensslconf.h */ | ||
| 2 | /* WARNING: Generated automatically from opensslconf.h.in by Configure. */ | ||
| 3 | |||
| 4 | /* OpenSSL was configured with the following options: */ | ||
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | ||
| 6 | |||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 16 | #ifndef OPENSSL_NO_GOST | ||
| 17 | # define OPENSSL_NO_GOST | ||
| 18 | #endif | ||
| 19 | #ifndef OPENSSL_NO_JPAKE | ||
| 20 | # define OPENSSL_NO_JPAKE | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_KRB5 | ||
| 23 | # define OPENSSL_NO_KRB5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_MD2 | ||
| 26 | # define OPENSSL_NO_MD2 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_MDC2 | ||
| 29 | # define OPENSSL_NO_MDC2 | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_RC5 | ||
| 32 | # define OPENSSL_NO_RC5 | ||
| 33 | #endif | ||
| 34 | #ifndef OPENSSL_NO_RFC3779 | ||
| 35 | # define OPENSSL_NO_RFC3779 | ||
| 36 | #endif | ||
| 37 | #ifndef OPENSSL_NO_SEED | ||
| 38 | # define OPENSSL_NO_SEED | ||
| 39 | #endif | ||
| 40 | #ifndef OPENSSL_NO_SSL2 | ||
| 41 | # define OPENSSL_NO_SSL2 | ||
| 42 | #endif | ||
| 43 | #ifndef OPENSSL_NO_STORE | ||
| 44 | # define OPENSSL_NO_STORE | ||
| 45 | #endif | ||
| 46 | |||
| 47 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | ||
| 48 | #ifndef OPENSSL_THREADS | ||
| 49 | # define OPENSSL_THREADS | ||
| 50 | #endif | ||
| 51 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 52 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 53 | #endif | ||
| 54 | |||
| 55 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | ||
| 56 | asks for it. This is a transient feature that is provided for those | ||
| 57 | who haven't had the time to do the appropriate changes in their | ||
| 58 | applications. */ | ||
| 59 | #ifdef OPENSSL_ALGORITHM_DEFINES | ||
| 60 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 61 | # define NO_CAMELLIA | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 64 | # define NO_CMS | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 67 | # define NO_GMP | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_GOST) && !defined(NO_GOST) | ||
| 70 | # define NO_GOST | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE) | ||
| 73 | # define NO_JPAKE | ||
| 74 | # endif | ||
| 75 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | ||
| 76 | # define NO_KRB5 | ||
| 77 | # endif | ||
| 78 | # if defined(OPENSSL_NO_MD2) && !defined(NO_MD2) | ||
| 79 | # define NO_MD2 | ||
| 80 | # endif | ||
| 81 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 82 | # define NO_MDC2 | ||
| 83 | # endif | ||
| 84 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 85 | # define NO_RC5 | ||
| 86 | # endif | ||
| 87 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 88 | # define NO_RFC3779 | ||
| 89 | # endif | ||
| 90 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 91 | # define NO_SEED | ||
| 92 | # endif | ||
| 93 | # if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2) | ||
| 94 | # define NO_SSL2 | ||
| 95 | # endif | ||
| 96 | # if defined(OPENSSL_NO_STORE) && !defined(NO_STORE) | ||
| 97 | # define NO_STORE | ||
| 98 | # endif | ||
| 99 | #endif | ||
| 100 | |||
| 101 | /* crypto/opensslconf.h.in */ | ||
| 102 | |||
| 103 | /* Generate 80386 code? */ | ||
| 104 | #undef I386_ONLY | ||
| 105 | |||
| 106 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | ||
| 107 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | ||
| 108 | #define ENGINESDIR "/usr/lib/engines" | ||
| 109 | #define OPENSSLDIR "/etc/ssl" | ||
| 110 | #endif | ||
| 111 | #endif | ||
| 112 | |||
| 113 | #undef OPENSSL_UNISTD | ||
| 114 | #define OPENSSL_UNISTD <unistd.h> | ||
| 115 | |||
| 116 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
| 117 | |||
| 118 | #if defined(HEADER_IDEA_H) && !defined(IDEA_INT) | ||
| 119 | #define IDEA_INT unsigned int | ||
| 120 | #endif | ||
| 121 | |||
| 122 | #if defined(HEADER_MD2_H) && !defined(MD2_INT) | ||
| 123 | #define MD2_INT unsigned int | ||
| 124 | #endif | ||
| 125 | |||
| 126 | #if defined(HEADER_RC2_H) && !defined(RC2_INT) | ||
| 127 | /* I need to put in a mod for the alpha - eay */ | ||
| 128 | #define RC2_INT unsigned int | ||
| 129 | #endif | ||
| 130 | |||
| 131 | #if defined(HEADER_RC4_H) | ||
| 132 | #if !defined(RC4_INT) | ||
| 133 | /* using int types make the structure larger but make the code faster | ||
| 134 | * on most boxes I have tested - up to %20 faster. */ | ||
| 135 | /* | ||
| 136 | * I don't know what does "most" mean, but declaring "int" is a must on: | ||
| 137 | * - Intel P6 because partial register stalls are very expensive; | ||
| 138 | * - elder Alpha because it lacks byte load/store instructions; | ||
| 139 | */ | ||
| 140 | #define RC4_INT unsigned int | ||
| 141 | #endif | ||
| 142 | #if !defined(RC4_CHUNK) | ||
| 143 | /* | ||
| 144 | * This enables code handling data aligned at natural CPU word | ||
| 145 | * boundary. See crypto/rc4/rc4_enc.c for further details. | ||
| 146 | */ | ||
| 147 | #undef RC4_CHUNK | ||
| 148 | #endif | ||
| 149 | #endif | ||
| 150 | |||
| 151 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) | ||
| 152 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | ||
| 153 | * %20 speed up (longs are 8 bytes, int's are 4). */ | ||
| 154 | #ifndef DES_LONG | ||
| 155 | #define DES_LONG unsigned int | ||
| 156 | #endif | ||
| 157 | #endif | ||
| 158 | |||
| 159 | #if defined(HEADER_BN_H) && !defined(CONFIG_HEADER_BN_H) | ||
| 160 | #define CONFIG_HEADER_BN_H | ||
| 161 | #define BN_LLONG | ||
| 162 | |||
| 163 | /* Should we define BN_DIV2W here? */ | ||
| 164 | |||
| 165 | /* Only one for the following should be defined */ | ||
| 166 | /* The prime number generation stuff may not work when | ||
| 167 | * EIGHT_BIT but I don't care since I've only used this mode | ||
| 168 | * for debuging the bignum libraries */ | ||
| 169 | #undef SIXTY_FOUR_BIT_LONG | ||
| 170 | #undef SIXTY_FOUR_BIT | ||
| 171 | #define THIRTY_TWO_BIT | ||
| 172 | #undef SIXTEEN_BIT | ||
| 173 | #undef EIGHT_BIT | ||
| 174 | #endif | ||
| 175 | |||
| 176 | #if defined(HEADER_RC4_LOCL_H) && !defined(CONFIG_HEADER_RC4_LOCL_H) | ||
| 177 | #define CONFIG_HEADER_RC4_LOCL_H | ||
| 178 | /* if this is defined data[i] is used instead of *data, this is a %20 | ||
| 179 | * speedup on x86 */ | ||
| 180 | #define RC4_INDEX | ||
| 181 | #endif | ||
| 182 | |||
| 183 | #if defined(HEADER_BF_LOCL_H) && !defined(CONFIG_HEADER_BF_LOCL_H) | ||
| 184 | #define CONFIG_HEADER_BF_LOCL_H | ||
| 185 | #undef BF_PTR | ||
| 186 | #endif /* HEADER_BF_LOCL_H */ | ||
| 187 | |||
| 188 | #if defined(HEADER_DES_LOCL_H) && !defined(CONFIG_HEADER_DES_LOCL_H) | ||
| 189 | #define CONFIG_HEADER_DES_LOCL_H | ||
| 190 | #ifndef DES_DEFAULT_OPTIONS | ||
| 191 | /* the following is tweaked from a config script, that is why it is a | ||
| 192 | * protected undef/define */ | ||
| 193 | #ifndef DES_PTR | ||
| 194 | #undef DES_PTR | ||
| 195 | #endif | ||
| 196 | |||
| 197 | /* This helps C compiler generate the correct code for multiple functional | ||
| 198 | * units. It reduces register dependancies at the expense of 2 more | ||
| 199 | * registers */ | ||
| 200 | #ifndef DES_RISC1 | ||
| 201 | #undef DES_RISC1 | ||
| 202 | #endif | ||
| 203 | |||
| 204 | #ifndef DES_RISC2 | ||
| 205 | #undef DES_RISC2 | ||
| 206 | #endif | ||
| 207 | |||
| 208 | #if defined(DES_RISC1) && defined(DES_RISC2) | ||
| 209 | YOU SHOULD NOT HAVE BOTH DES_RISC1 AND DES_RISC2 DEFINED!!!!! | ||
| 210 | #endif | ||
| 211 | |||
| 212 | /* Unroll the inner loop, this sometimes helps, sometimes hinders. | ||
| 213 | * Very mucy CPU dependant */ | ||
| 214 | #ifndef DES_UNROLL | ||
| 215 | #define DES_UNROLL | ||
| 216 | #endif | ||
| 217 | |||
| 218 | /* These default values were supplied by | ||
| 219 | * Peter Gutman <pgut001@cs.auckland.ac.nz> | ||
| 220 | * They are only used if nothing else has been defined */ | ||
| 221 | #if !defined(DES_PTR) && !defined(DES_RISC1) && !defined(DES_RISC2) && !defined(DES_UNROLL) | ||
| 222 | /* Special defines which change the way the code is built depending on the | ||
| 223 | CPU and OS. For SGI machines you can use _MIPS_SZLONG (32 or 64) to find | ||
| 224 | even newer MIPS CPU's, but at the moment one size fits all for | ||
| 225 | optimization options. Older Sparc's work better with only UNROLL, but | ||
| 226 | there's no way to tell at compile time what it is you're running on */ | ||
| 227 | |||
| 228 | #if defined( sun ) /* Newer Sparc's */ | ||
| 229 | # define DES_PTR | ||
| 230 | # define DES_RISC1 | ||
| 231 | # define DES_UNROLL | ||
| 232 | #elif defined( __ultrix ) /* Older MIPS */ | ||
| 233 | # define DES_PTR | ||
| 234 | # define DES_RISC2 | ||
| 235 | # define DES_UNROLL | ||
| 236 | #elif defined( __osf1__ ) /* Alpha */ | ||
| 237 | # define DES_PTR | ||
| 238 | # define DES_RISC2 | ||
| 239 | #elif defined ( _AIX ) /* RS6000 */ | ||
| 240 | /* Unknown */ | ||
| 241 | #elif defined( __hpux ) /* HP-PA */ | ||
| 242 | /* Unknown */ | ||
| 243 | #elif defined( __aux ) /* 68K */ | ||
| 244 | /* Unknown */ | ||
| 245 | #elif defined( __dgux ) /* 88K (but P6 in latest boxes) */ | ||
| 246 | # define DES_UNROLL | ||
| 247 | #elif defined( __sgi ) /* Newer MIPS */ | ||
| 248 | # define DES_PTR | ||
| 249 | # define DES_RISC2 | ||
| 250 | # define DES_UNROLL | ||
| 251 | #elif defined(i386) || defined(__i386__) /* x86 boxes, should be gcc */ | ||
| 252 | # define DES_PTR | ||
| 253 | # define DES_RISC1 | ||
| 254 | # define DES_UNROLL | ||
| 255 | #endif /* Systems-specific speed defines */ | ||
| 256 | #endif | ||
| 257 | |||
| 258 | #endif /* DES_DEFAULT_OPTIONS */ | ||
| 259 | #endif /* HEADER_DES_LOCL_H */ | ||
diff --git a/src/lib/libssl/crypto/shlib_version b/src/lib/libssl/crypto/shlib_version new file mode 100644 index 0000000000..dc34974a49 --- /dev/null +++ b/src/lib/libssl/crypto/shlib_version | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | major=20 | ||
| 2 | minor=1 | ||
