search for: ex_data

Displaying 3 results from an estimated 3 matches for "ex_data".

Did you mean: ext_data
2000 Aug 02
1
load_private_key hell
...oth times they are called. I continued checking like this for every function call inside load_private_key. The first difference I noticed was in load_private_key_dsa. After it calls: in = BIO_new(BIO_s_file()); The "in" stucture in my test program and ssh are identical except for in->ex_data->dummy which is 0 in ssh and 1886999597 in my program!?! I don't know how that happens, since that function takes no arguments. I'm guessing some sort of global variable? Also with the BIO functions I am now into undocumented openssl code. yay! Anyway, Since everything else was ident...
2002 Apr 24
2
RSA_verify question on OpenSSH Client w/ OpenSSL0.9.6a
...8b820: 0x0198b780 0x00000000 0x00000000 0x00000000 0x198b830: 0x00000000 0x00000000 0x00000000 0x00000000 (gdb) p *rsa $3 = {pad = 0, version = 0, meth = 0x195bb1c, n = 0x199d480, e = 0x199d3c0, d = 0x0, p = 0x0, q = 0x0, dmp1 = 0x0, dmq1 = 0x0, iqmp = 0x0, ex_data = { sk = 0x0, dummy = 1848469362}, references = 1, flags = 6, _method_mod_n = 0x0, _method_mod_p = 0x0, _method_mod_q = 0x0, bignum_data = 0x0, blinding = 0x0} (gdb) x/40x 0x199d480 0x199d480: 0x0199d4a0 0x00000001 0x00000001 0x00000000 0x199d490: 0x00000001 0x...
2015 Mar 31
7
Wanted: smartcard with ECDSA support
Hi list, I have no idea if Damien Miller had the time to work on that. I have an initial patch to authenticate using PKCS#11 and ECDSA keys. This requires OpenSSL 1.0.2, prior OpenSSL versions do not expose the required interfaces to override the signature function pointer for ECDSA. The only limitation is that the OpenSSL API misses some cleanup function (finish, for instance), hence I have yet