Recent changes from 0.9.6-stable.
This commit is contained in:
4
CHANGES
4
CHANGES
@@ -4,7 +4,9 @@
|
|||||||
|
|
||||||
Changes between 0.9.6g and 0.9.6h [xx XXX xxxx]
|
Changes between 0.9.6g and 0.9.6h [xx XXX xxxx]
|
||||||
|
|
||||||
*)
|
*) Fix typo in OBJ_txt2obj which incorrectly passed the content
|
||||||
|
length, instead of the encoding length to d2i_ASN1_OBJECT.
|
||||||
|
[Steve Henson]
|
||||||
|
|
||||||
Changes between 0.9.6f and 0.9.6g [9 Aug 2002]
|
Changes between 0.9.6f and 0.9.6g [9 Aug 2002]
|
||||||
|
|
||||||
|
|||||||
@@ -413,7 +413,7 @@ int BN_mod_mul_montgomery(BIGNUM *r,BIGNUM *a,BIGNUM *b,BN_MONT_CTX *mont,
|
|||||||
BN_CTX *ctx);
|
BN_CTX *ctx);
|
||||||
int BN_from_montgomery(BIGNUM *r,BIGNUM *a,BN_MONT_CTX *mont,BN_CTX *ctx);
|
int BN_from_montgomery(BIGNUM *r,BIGNUM *a,BN_MONT_CTX *mont,BN_CTX *ctx);
|
||||||
void BN_MONT_CTX_free(BN_MONT_CTX *mont);
|
void BN_MONT_CTX_free(BN_MONT_CTX *mont);
|
||||||
int BN_MONT_CTX_set(BN_MONT_CTX *mont,const BIGNUM *modulus,BN_CTX *ctx);
|
int BN_MONT_CTX_set(BN_MONT_CTX *mont,const BIGNUM *mod,BN_CTX *ctx);
|
||||||
BN_MONT_CTX *BN_MONT_CTX_copy(BN_MONT_CTX *to,BN_MONT_CTX *from);
|
BN_MONT_CTX *BN_MONT_CTX_copy(BN_MONT_CTX *to,BN_MONT_CTX *from);
|
||||||
|
|
||||||
BN_BLINDING *BN_BLINDING_new(BIGNUM *A,BIGNUM *Ai,BIGNUM *mod);
|
BN_BLINDING *BN_BLINDING_new(BIGNUM *A,BIGNUM *Ai,BIGNUM *mod);
|
||||||
|
|||||||
@@ -417,7 +417,7 @@ ASN1_OBJECT *OBJ_txt2obj(const char *s, int no_name)
|
|||||||
a2d_ASN1_OBJECT(p,i,s,-1);
|
a2d_ASN1_OBJECT(p,i,s,-1);
|
||||||
|
|
||||||
p=buf;
|
p=buf;
|
||||||
op=d2i_ASN1_OBJECT(NULL,&p,i);
|
op=d2i_ASN1_OBJECT(NULL,&p,j);
|
||||||
OPENSSL_free(buf);
|
OPENSSL_free(buf);
|
||||||
return op;
|
return op;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -313,7 +313,7 @@ $ WRITE SYS$OUTPUT "Creating SSL_TASK OSU HTTP SSL Engine."
|
|||||||
$!
|
$!
|
||||||
$! Compile The File.
|
$! Compile The File.
|
||||||
$!
|
$!
|
||||||
$ ON ERROR GOTO SSL_TASK_END
|
$ ON ERROR THEN GOTO SSL_TASK_END
|
||||||
$ CC5/OBJECT='OBJ_DIR'SSL_TASK.OBJ SYS$DISK:[]SSL_TASK.C
|
$ CC5/OBJECT='OBJ_DIR'SSL_TASK.OBJ SYS$DISK:[]SSL_TASK.C
|
||||||
$!
|
$!
|
||||||
$! Link The Program, Check To See If We Need To Link With RSAREF Or Not.
|
$! Link The Program, Check To See If We Need To Link With RSAREF Or Not.
|
||||||
|
|||||||
@@ -247,12 +247,22 @@ int main(int argc, char *argv[])
|
|||||||
debug=1;
|
debug=1;
|
||||||
else if (strcmp(*argv,"-reuse") == 0)
|
else if (strcmp(*argv,"-reuse") == 0)
|
||||||
reuse=1;
|
reuse=1;
|
||||||
#ifndef NO_DH
|
|
||||||
else if (strcmp(*argv,"-dhe1024") == 0)
|
else if (strcmp(*argv,"-dhe1024") == 0)
|
||||||
|
{
|
||||||
|
#ifndef NO_DH
|
||||||
dhe1024=1;
|
dhe1024=1;
|
||||||
else if (strcmp(*argv,"-dhe1024dsa") == 0)
|
#else
|
||||||
dhe1024dsa=1;
|
fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
|
||||||
#endif
|
#endif
|
||||||
|
}
|
||||||
|
else if (strcmp(*argv,"-dhe1024dsa") == 0)
|
||||||
|
{
|
||||||
|
#ifndef NO_DH
|
||||||
|
dhe1024dsa=1;
|
||||||
|
#else
|
||||||
|
fprintf(stderr,"ignoring -dhe1024, since I'm compiled without DH\n";
|
||||||
|
#endif
|
||||||
|
}
|
||||||
else if (strcmp(*argv,"-no_dhe") == 0)
|
else if (strcmp(*argv,"-no_dhe") == 0)
|
||||||
no_dhe=1;
|
no_dhe=1;
|
||||||
else if (strcmp(*argv,"-ssl2") == 0)
|
else if (strcmp(*argv,"-ssl2") == 0)
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing CRL conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -9,7 +9,9 @@ $ test := p.txt
|
|||||||
$ cmd := mcr 'exe_dir'openssl
|
$ cmd := mcr 'exe_dir'openssl
|
||||||
$
|
$
|
||||||
$ if f$search(test) .nes. "" then delete 'test';*
|
$ if f$search(test) .nes. "" then delete 'test';*
|
||||||
$ copy 'testsrc' 'test'
|
$ convert/fdl=sys$input: 'testsrc' 'test'
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ if f$search(test+"-cipher") .nes. "" then delete 'test'-cipher;*
|
$ if f$search(test+"-cipher") .nes. "" then delete 'test'-cipher;*
|
||||||
$ if f$search(test+"-clear") .nes. "" then delete 'test'-clear;*
|
$ if f$search(test+"-clear") .nes. "" then delete 'test'-clear;*
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing PKCS7 conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing PKCS7 conversions (2)"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing req conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -24,7 +24,9 @@ $ write sys$output "testing RSA conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing session-id conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
@@ -13,7 +13,9 @@ $ write sys$output "testing X509 conversions"
|
|||||||
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
$ if f$search("fff.*") .nes "" then delete fff.*;*
|
||||||
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
$ if f$search("ff.*") .nes "" then delete ff.*;*
|
||||||
$ if f$search("f.*") .nes "" then delete f.*;*
|
$ if f$search("f.*") .nes "" then delete f.*;*
|
||||||
$ copy 't' fff.p
|
$ convert/fdl=sys$input: 't' fff.p
|
||||||
|
RECORD
|
||||||
|
FORMAT STREAM_LF
|
||||||
$
|
$
|
||||||
$ write sys$output "p -> d"
|
$ write sys$output "p -> d"
|
||||||
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
$ 'cmd' -in fff.p -inform p -outform d -out f.d
|
||||||
|
|||||||
Reference in New Issue
Block a user