diff options
Diffstat (limited to 'checks/validate.cpp')
-rw-r--r-- | checks/validate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/validate.cpp b/checks/validate.cpp index bae5e857f..307a4e0d5 100644 --- a/checks/validate.cpp +++ b/checks/validate.cpp @@ -492,7 +492,7 @@ bool failed_test(const std::string& algo, pipe.append(test); pipe.append(new Botan::Hex_Encoder); - secure_vector<byte> data = Botan::hex_decode(in); + std::vector<byte> data = Botan::hex_decode(in); const byte* data_ptr = &data[0]; // this can help catch errors with buffering, etc |