History log of /openssl/ (Results 35601 – 35625 of 36054)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
d052139019-Apr-1999 Ulf Möller

Pass $PERL on make errors.

41b731f218-Apr-1999 Dr. Stephen Henson

Initial support for Certificate Policies extension: print out works but setting
isn't fully implemented (yet).

8de421b618-Apr-1999 Ben Laurie

Fix const declarations.

9587030e18-Apr-1999 Ben Laurie

Update dependencies.

c83e523d17-Apr-1999 Dr. Stephen Henson

Allow asn1parse to print out VISIBLESTRING and some code needed for certificate
policies extension.

e778802f17-Apr-1999 Ben Laurie

Massive constification.


CHANGES
Configure
apps/ca.c
apps/ciphers.c
apps/dgst.c
apps/dsa.c
apps/enc.c
apps/req.c
apps/rsa.c
apps/s_apps.h
apps/s_cb.c
apps/s_server.c
apps/x509.c
crypto/asn1/a_object.c
crypto/asn1/a_set.c
crypto/asn1/a_sign.c
crypto/asn1/a_verify.c
crypto/asn1/asn1.h
crypto/asn1/asn1_lib.c
crypto/asn1/asn1_par.c
crypto/asn1/f_enum.c
crypto/asn1/f_int.c
crypto/asn1/f_string.c
crypto/asn1/n_pkey.c
crypto/asn1/t_pkey.c
crypto/asn1/t_req.c
crypto/asn1/t_x509.c
crypto/asn1/x_x509.c
crypto/bf/bf_ecb.c
crypto/bf/blowfish.h
crypto/bio/b_dump.c
crypto/bio/b_sock.c
crypto/bio/bio.h
crypto/bio/bio_cb.c
crypto/bio/bio_lib.c
crypto/bio/bss_conn.c
crypto/bio/bss_log.c
crypto/bn/bn_lib.c
crypto/bn/bn_print.c
crypto/buffer/buffer.c
crypto/buffer/buffer.h
crypto/comp/comp.h
crypto/conf/conf.c
crypto/cryptlib.c
crypto/crypto.h
crypto/cversion.c
crypto/des/des.org
crypto/des/des_enc.c
crypto/des/des_locl.org
crypto/des/ecb_enc.c
crypto/des/fcrypt_b.c
crypto/des/pcbc_enc.c
crypto/des/qud_cksm.c
crypto/des/set_key.c
crypto/des/supp.c
crypto/dh/dh_lib.c
crypto/dsa/dsa_lib.c
crypto/err/err.c
crypto/err/err.h
crypto/err/err_prn.c
crypto/evp/bio_enc.c
crypto/evp/bio_md.c
crypto/evp/bio_ok.c
crypto/evp/digest.c
crypto/evp/e_cbc_r2.c
crypto/evp/evp.h
crypto/evp/evp_enc.c
crypto/evp/evp_key.c
crypto/evp/names.c
crypto/hmac/hmac.c
crypto/hmac/hmac.h
crypto/idea/i_ecb.c
crypto/idea/idea.org
crypto/lhash/lhash.c
crypto/lhash/lhash.h
crypto/md2/md2.org
crypto/md2/md2_dgst.c
crypto/mem.c
crypto/objects/o_names.c
crypto/objects/obj_dat.c
crypto/objects/obj_lib.c
crypto/objects/objects.h
crypto/pem/pem_all.c
crypto/pem/pem_info.c
crypto/pem/pem_lib.c
crypto/pkcs12/p12_key.c
crypto/pkcs12/p12_mutl.c
crypto/pkcs12/pkcs12.h
crypto/pkcs7/pk7_doit.c
crypto/rand/md_rand.c
crypto/rc2/rc2_ecb.c
crypto/rc4/rc4.org
crypto/rc4/rc4_skey.c
crypto/rsa/rsa.h
crypto/rsa/rsa_lib.c
crypto/stack/stack.c
crypto/txt_db/txt_db.c
crypto/x509/by_dir.c
crypto/x509/by_file.c
crypto/x509/x509.h
crypto/x509/x509_def.c
crypto/x509/x509_obj.c
crypto/x509/x509_txt.c
crypto/x509/x509_vfy.c
crypto/x509/x509_vfy.h
crypto/x509/x_all.c
crypto/x509v3/v3_conf.c
crypto/x509v3/v3_utl.c
crypto/x509v3/x509v3.h
ssl/s2_clnt.c
ssl/s2_enc.c
ssl/s2_lib.c
ssl/s2_pkt.c
ssl/s2_srvr.c
ssl/s3_enc.c
ssl/s3_lib.c
ssl/s3_pkt.c
ssl/ssl.h
ssl/ssl2.h
ssl/ssl3.h
ssl/ssl_ciph.c
ssl/ssl_lib.c
ssl/ssl_locl.h
ssl/t1_enc.c
d77b305417-Apr-1999 Dr. Stephen Henson

Add support for VISIBLESTRING and UTF8String

cfdcfede17-Apr-1999 Ben Laurie

Another STACK bites the dust.

1d48dd0016-Apr-1999 Dr. Stephen Henson

Add initial support for r2i RAW extensions which can access the config database
add various X509V3_CTX helper functions and support for LHASH as the config
database.

c5db363e16-Apr-1999 Ben Laurie

Fix some warnings. Contributed by Anonymous.

ddb25f8816-Apr-1999 Ulf Möller

Another bug.

2fef678516-Apr-1999 Ulf Möller

Write random seed file in binary mode.

Submitted by: Richard Levitte <levitte@stacken.kth.se>

953937bd15-Apr-1999 Dr. Stephen Henson

Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to fail
when they cause the destination to expand.

To see how evil this is try this:

#include <pem.h>
ma

Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to fail
when they cause the destination to expand.

To see how evil this is try this:

#include <pem.h>
main()
{
BIGNUM *bn = NULL;
int i;
bn = BN_new();
BN_hex2bn(&bn, "FFFFFFFF");
BN_add_word(bn, 1);
printf("Value %s\n", BN_bn2hex(bn));
}

This would typically fail before the patch.

It also screws up if you comment out the BN_hex2bn line above or in any
situation where BN_add_word() causes the number of BN_ULONGs in the result
to change (try doubling the number of FFs).

show more ...

abed0b8a15-Apr-1999 Ben Laurie

Add new experimental ciphersuites. Bring naming into line with RFC.

28db340115-Apr-1999 Ben Laurie

Just use an ANSI declaration, instead.

c1cf1eec14-Apr-1999 Bodo Möller

/* Just some comments. */

Submitted by:
Reviewed by:
PR:

28a9880914-Apr-1999 Dr. Stephen Henson

Add some utilities to support SXNet extension also add support in DEF files
generator to typesafe stacks.

d91f8c3c14-Apr-1999 Bodo Möller

Cleaning up Ben's clean-ups :-)

Submitted by:
Reviewed by:
PR:

9e7bd9b514-Apr-1999 Bodo Möller

Make Windows compilers happy.

Submitted by:Tom Titchener
Reviewed by:
PR:

f0f1b4e414-Apr-1999 Bodo Möller

Some tiny fixes.

Submitted by:
Reviewed by:
PR:

Submitted by:
Reviewed by:
PR:

8f7de4f014-Apr-1999 Ben Laurie

Typo.

52a4825414-Apr-1999 Ralf S. Engelschall

Start with some plans...

0490a86d13-Apr-1999 Dr. Stephen Henson

Delete all the old X509V3 pack and unpack stuff and various structures and
files associated with them. This stuff is all obsoleted by the new X509V3 code.

baf748ba13-Apr-1999 Ralf S. Engelschall

SSL_ALLOW_ENULL was renamed to SSL_FORBID_ENULL some time ago by Ben.

dd5ae70313-Apr-1999 Bodo Möller

Submitted by:
Reviewed by:
PR:

1...<<1421142214231424142514261427142814291430>>...1443