diff options
author | lloyd <[email protected]> | 2010-10-13 16:06:11 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-10-13 16:06:11 +0000 |
commit | 18d3acffbe2324a90c505cf23ff17c1392c3be4d (patch) | |
tree | 5a7f99e16dbf7cc59015bc94220174075755289a /src/utils/rotate.h | |
parent | 12617c8a0942a5af35ffe72891f3cd63c8b7fe18 (diff) |
More size_t
Diffstat (limited to 'src/utils/rotate.h')
-rw-r--r-- | src/utils/rotate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/rotate.h b/src/utils/rotate.h index c8f8d4a1a..5e3eef304 100644 --- a/src/utils/rotate.h +++ b/src/utils/rotate.h @@ -15,12 +15,12 @@ namespace Botan { /* * Word Rotation Functions */ -template<typename T> inline T rotate_left(T input, u32bit rot) +template<typename T> inline T rotate_left(T input, size_t rot) { return static_cast<T>((input << rot) | (input >> (8*sizeof(T)-rot)));; } -template<typename T> inline T rotate_right(T input, u32bit rot) +template<typename T> inline T rotate_right(T input, size_t rot) { return static_cast<T>((input >> rot) | (input << (8*sizeof(T)-rot))); } |