Displaying 3 results from an estimated 3 matches for "dsa_lib".
Did you mean:
dma_lib
2001 Nov 05
1
FYI dsa_lib.c and dh_lib.c in openssl-0.9.6b and latest snapshot
...l.)
The compilation options I used for various code are documented in the Sun Blueprint "Building and Deploying OpenSSH for the Solaris Operating Environment"
The source changes I made are below for openssl (suggested by several here):
Please change line 69 in openssl-0.9.6b/crypto/dsa/dsa_lib.c from
static DSA_METHOD *default_DSA_method;
to
static DSA_METHOD *default_DSA_method = NULL;
I just found another of these beasts in crypto/dh/dh_lib.c. Change
static const DH_METHOD *default_DH_method;
to
static const DH_METHOD *default_DH_method = NULL;
-------------- next part -----...
2001 Jul 24
4
Debugging ssh-keygen dsa on Solaris8
...ated by signal BUS (invalid address alignment)
Current function is DSA_new_method (optimized)
127 ret->flags=ret->meth->flags;
(/opt/SUNWspro/bin/../WS6U2/bin/sparcv9/dbx)
where
=>[1] DSA_new_method(meth = ???) (optimized), at 0x4b6b8 (line ~127) in
"dsa_lib.c"
[2] DSA_new() (optimized), at 0x4b580 (line ~86) in "dsa_lib.c"
[3] DSA_generate_parameters(bits = ???, seed_in = ???, seed_len = ???,
counter_ret = ???, h_ret = ???, callback = ???, cb_arg = ???)
(optimized), at 0x4ace4 (line ~115) in "dsa_gen.c"
[4] dsa_generate_...
2001 Nov 06
0
Sun Forte 6 Update 2 Compiler Issues Resolved!
...ave things function without changing source for openssl. I hope somebody finds this useful. I will report back on Solaris 2.6. If you still can't get things to work then you can always do the following to the openssl code (this is for 0.9.6b):
Please change line 69 in openssl-0.9.6b/crypto/dsa/dsa_lib.c from
static DSA_METHOD *default_DSA_method;
to
static DSA_METHOD *default_DSA_method = NULL;
I just found another of these beasts in crypto/dh/dh_lib.c. Change
static const DH_METHOD *default_DH_method;
to
static const DH_METHOD *default_DH_method = NULL;
-------------- next part ---...