From 18d3acffbe2324a90c505cf23ff17c1392c3be4d Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 13 Oct 2010 16:06:11 +0000 Subject: More size_t --- src/utils/rotate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils/rotate.h') 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 inline T rotate_left(T input, u32bit rot) +template inline T rotate_left(T input, size_t rot) { return static_cast((input << rot) | (input >> (8*sizeof(T)-rot)));; } -template inline T rotate_right(T input, u32bit rot) +template inline T rotate_right(T input, size_t rot) { return static_cast((input >> rot) | (input << (8*sizeof(T)-rot))); } -- cgit v1.2.3