diff options
Diffstat (limited to 'src/mac/cmac/cmac.h')
-rw-r--r-- | src/mac/cmac/cmac.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mac/cmac/cmac.h b/src/mac/cmac/cmac.h index 98634bdb7..b398f2563 100644 --- a/src/mac/cmac/cmac.h +++ b/src/mac/cmac/cmac.h @@ -35,8 +35,8 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode * @param in the input * @param polynomial the byte value of the polynomial */ - static SecureVector<byte> poly_double(const MemoryRegion<byte>& in, - byte polynomial); + static secure_vector<byte> poly_double(const secure_vector<byte>& in, + byte polynomial); /** * @param cipher the underlying block cipher to use @@ -49,7 +49,7 @@ class BOTAN_DLL CMAC : public MessageAuthenticationCode void key_schedule(const byte[], size_t); BlockCipher* e; - SecureVector<byte> buffer, state, B, P; + secure_vector<byte> buffer, state, B, P; size_t position; byte polynomial; }; |