diff options
author | lloyd <[email protected]> | 2010-10-12 19:59:26 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-12 19:59:26 +0000 |
commit | 39306575081f043d1c79ade43797d3595fd5aeec (patch) | |
tree | 926b8833f6cbde9f929b2b6156fd27b5d69f5266 /src/pubkey/workfactor.h | |
parent | a85f136550c08fc878e3983866af0e6460e980da (diff) |
Use size_t instead of u32bit in all of pubkey
Diffstat (limited to 'src/pubkey/workfactor.h')
-rw-r--r-- | src/pubkey/workfactor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pubkey/workfactor.h b/src/pubkey/workfactor.h index c4fc3baa7..bd1a43298 100644 --- a/src/pubkey/workfactor.h +++ b/src/pubkey/workfactor.h @@ -17,7 +17,7 @@ namespace Botan { * @param prime_group_size size of the group in bits * @return estimated security level for this group */ -u32bit dl_work_factor(u32bit prime_group_size); +size_t dl_work_factor(size_t prime_group_size); } |