diff options
author | Werner Koch <wk@gnupg.org> | 1998-03-09 22:44:06 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 1998-03-09 22:44:06 +0100 |
commit | a6a8f1e706bd7e528262151bc04ebb9409c2eeed (patch) | |
tree | 20b5771581e695a22559d8ffe3f90862afb11e3d /cipher/dsa.h | |
parent | removed g10maint.c (diff) | |
download | gnupg2-a6a8f1e706bd7e528262151bc04ebb9409c2eeed.tar.xz gnupg2-a6a8f1e706bd7e528262151bc04ebb9409c2eeed.zip |
partial DSA support
Diffstat (limited to 'cipher/dsa.h')
-rw-r--r-- | cipher/dsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/dsa.h b/cipher/dsa.h index 1574560f6..07a41ae6c 100644 --- a/cipher/dsa.h +++ b/cipher/dsa.h @@ -43,7 +43,7 @@ void dsa_free_public_key( DSA_public_key *pk ); void dsa_free_secret_key( DSA_secret_key *sk ); void dsa_generate( DSA_public_key *pk, DSA_secret_key *sk, unsigned nbits ); int dsa_check_secret_key( DSA_secret_key *sk ); -void dsa_sign(MPI a, MPI b, MPI input, DSA_secret_key *skey); -int dsa_verify(MPI a, MPI b, MPI input, DSA_public_key *pkey); +void dsa_sign(MPI r, MPI s, MPI input, DSA_secret_key *skey); +int dsa_verify(MPI r, MPI s, MPI input, DSA_public_key *pkey); #endif /*G10_DSA_H*/ |