d0521390 | 19-Apr-1999 |
Ulf Möller |
Pass $PERL on make errors. |
41b731f2 | 18-Apr-1999 |
Dr. Stephen Henson |
Initial support for Certificate Policies extension: print out works but setting isn't fully implemented (yet). |
8de421b6 | 18-Apr-1999 |
Ben Laurie |
Fix const declarations. |
9587030e | 18-Apr-1999 |
Ben Laurie |
Update dependencies. |
c83e523d | 17-Apr-1999 |
Dr. Stephen Henson |
Allow asn1parse to print out VISIBLESTRING and some code needed for certificate policies extension. |
e778802f | 17-Apr-1999 |
Ben Laurie |
Massive constification. |
d77b3054 | 17-Apr-1999 |
Dr. Stephen Henson |
Add support for VISIBLESTRING and UTF8String |
cfdcfede | 17-Apr-1999 |
Ben Laurie |
Another STACK bites the dust. |
1d48dd00 | 16-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. |
c5db363e | 16-Apr-1999 |
Ben Laurie |
Fix some warnings. Contributed by Anonymous. |
ddb25f88 | 16-Apr-1999 |
Ulf Möller |
Another bug. |
2fef6785 | 16-Apr-1999 |
Ulf Möller |
Write random seed file in binary mode. Submitted by: Richard Levitte <levitte@stacken.kth.se> |
953937bd | 15-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 ...
|
abed0b8a | 15-Apr-1999 |
Ben Laurie |
Add new experimental ciphersuites. Bring naming into line with RFC. |
28db3401 | 15-Apr-1999 |
Ben Laurie |
Just use an ANSI declaration, instead. |
c1cf1eec | 14-Apr-1999 |
Bodo Möller |
/* Just some comments. */ Submitted by: Reviewed by: PR: |
28a98809 | 14-Apr-1999 |
Dr. Stephen Henson |
Add some utilities to support SXNet extension also add support in DEF files generator to typesafe stacks. |
d91f8c3c | 14-Apr-1999 |
Bodo Möller |
Cleaning up Ben's clean-ups :-) Submitted by: Reviewed by: PR: |
9e7bd9b5 | 14-Apr-1999 |
Bodo Möller |
Make Windows compilers happy. Submitted by:Tom Titchener Reviewed by: PR: |
f0f1b4e4 | 14-Apr-1999 |
Bodo Möller |
Some tiny fixes. Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR: |
8f7de4f0 | 14-Apr-1999 |
Ben Laurie |
Typo. |
52a48254 | 14-Apr-1999 |
Ralf S. Engelschall |
Start with some plans... |
0490a86d | 13-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. |
baf748ba | 13-Apr-1999 |
Ralf S. Engelschall |
SSL_ALLOW_ENULL was renamed to SSL_FORBID_ENULL some time ago by Ben. |
dd5ae703 | 13-Apr-1999 |
Bodo Möller |
Submitted by: Reviewed by: PR: |