diff options
Diffstat (limited to 'src/sym_algo/symkey.h')
-rw-r--r-- | src/sym_algo/symkey.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sym_algo/symkey.h b/src/sym_algo/symkey.h index 07b588329..154ae59da 100644 --- a/src/sym_algo/symkey.h +++ b/src/sym_algo/symkey.h @@ -32,12 +32,12 @@ class BOTAN_DLL OctetString /** * @return start of this string */ - const byte* begin() const { return bits.begin(); } + const byte* begin() const { return &bits[0]; } /** * @return end of this string */ - const byte* end() const { return bits.end(); } + const byte* end() const { return &bits[bits.size()]; } /** * @return this encoded as hex |