diff options
author | levitte <levitte> | 2000-10-26 19:17:30 +0000 |
---|---|---|
committer | levitte <levitte> | 2000-10-26 19:17:30 +0000 |
commit | 27b7b94bef98572571912285c19fb8122a2b89ec (patch) | |
tree | 5298939f739ba5e30eff1d1533218a0bdc51fa4e /ssl/ssltest.c | |
parent | fb25de0f1a6886ccda616bbd80a55aef5a3305a0 (diff) | |
download | openssl-BRANCH_engine.tar.gz |
Merge from main trunk, conflicts resolved.MERGED_engine2mainBRANCH_engine
Change what needs to be changed in crypto/engine to adapt to the new
way DSO works.
Change hw_nuron.c to use DSO functions instead of using dl*()
functions directly.
Diffstat (limited to 'ssl/ssltest.c')
-rw-r--r-- | ssl/ssltest.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ssl/ssltest.c b/ssl/ssltest.c index 2ef8a5078..4763f2a6d 100644 --- a/ssl/ssltest.c +++ b/ssl/ssltest.c @@ -1278,7 +1278,7 @@ static void free_tmp_rsa(void) * $ openssl dhparam -C -noout -dsaparam 1024 * (The third function has been renamed to avoid name conflicts.) */ -DH *get_dh512() +static DH *get_dh512() { static unsigned char dh512_p[]={ 0xCB,0xC8,0xE1,0x86,0xD0,0x1F,0x94,0x17,0xA6,0x99,0xF0,0xC6, @@ -1301,7 +1301,7 @@ DH *get_dh512() return(dh); } -DH *get_dh1024() +static DH *get_dh1024() { static unsigned char dh1024_p[]={ 0xF8,0x81,0x89,0x7D,0x14,0x24,0xC5,0xD1,0xE6,0xF7,0xBF,0x3A, @@ -1329,7 +1329,7 @@ DH *get_dh1024() return(dh); } -DH *get_dh1024dsa() +static DH *get_dh1024dsa() { static unsigned char dh1024_p[]={ 0xC8,0x00,0xF7,0x08,0x07,0x89,0x4D,0x90,0x53,0xF3,0xD5,0x00, |