diff options
author | lloyd <[email protected]> | 2010-03-04 19:17:33 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-03-04 19:17:33 +0000 |
commit | 23cec11e0c88af17280697a37cebb78ed02678ee (patch) | |
tree | f0afcde3ce8a03468964821dd38d12e0c2a42634 /src/pubkey | |
parent | b1af7b8d9632d11404940110d39e5ee23637468b (diff) |
Fix typos
Diffstat (limited to 'src/pubkey')
-rw-r--r-- | src/pubkey/dsa/dsa.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pubkey/dsa/dsa.h b/src/pubkey/dsa/dsa.h index bdeedb1c4..8caa24b6b 100644 --- a/src/pubkey/dsa/dsa.h +++ b/src/pubkey/dsa/dsa.h @@ -24,8 +24,8 @@ class BOTAN_DLL DSA_PublicKey : public PK_Verifying_wo_MR_Key, DL_Group::Format group_format() const { return DL_Group::ANSI_X9_57; } u32bit message_parts() const { return 2; } - u32bit message_part_size() const { group_q.bytes(); } - u32bit max_input_bits() const { return group_q.bits(); } + u32bit message_part_size() const { return group_q().bytes(); } + u32bit max_input_bits() const { return group_q().bits(); } bool verify(const byte msg[], u32bit msg_len, const byte sig[], u32bit sig_len) const; |