Re: [PATCH] cleaning up crypto/dsa

1999-04-08 Thread Ulf Moeller
Plus some numbers for the new functions: Index: openssl/util/libeay.num === RCS file: /e/openssl/cvs/openssl/util/libeay.num,v retrieving revision 1.13 diff -u -r1.13 libeay.num --- openssl/util/libeay.num 1999/03/29 22:18:54

Re: cleaning up crypto/dsa

1999-03-20 Thread Bodo Moeller
> + s=BN_new(); if (s == NULL) ... > + ret=DSA_SIG_new(); if (ret == NULL) ... > + s = DSA_SIG_new(); if (s == NULL) ... __ OpenSSL Project http://www.openssl.org Development Mail

cleaning up crypto/dsa

1999-03-18 Thread Ulf Möller
I have separated the ASN.1 encoding of the DSA signature value from the cryptographic functions. That is a cleaner design, and by the following new functions it gives the user access to the signature values as required by OpenPGP: DSA_SIG *DSA_do_sign(unsigned char *dgst,int dlen,DSA *dsa); int