From 39306575081f043d1c79ade43797d3595fd5aeec Mon Sep 17 00:00:00 2001 From: lloyd Date: Tue, 12 Oct 2010 19:59:26 +0000 Subject: Use size_t instead of u32bit in all of pubkey --- src/pubkey/if_algo/if_algo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/pubkey/if_algo/if_algo.h') diff --git a/src/pubkey/if_algo/if_algo.h b/src/pubkey/if_algo/if_algo.h index d0a1ec197..b6683d30e 100644 --- a/src/pubkey/if_algo/if_algo.h +++ b/src/pubkey/if_algo/if_algo.h @@ -43,7 +43,7 @@ class BOTAN_DLL IF_Scheme_PublicKey : public virtual Public_Key */ const BigInt& get_e() const { return e; } - u32bit max_input_bits() const { return (n.bits() - 1); } + size_t max_input_bits() const { return (n.bits() - 1); } protected: IF_Scheme_PublicKey() {} -- cgit v1.2.3