aboutsummaryrefslogtreecommitdiffstats
path: root/libtests/rc4.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libtests/rc4.cc')
-rw-r--r--libtests/rc4.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/libtests/rc4.cc b/libtests/rc4.cc
index d3f1c7fa..b8abce88 100644
--- a/libtests/rc4.cc
+++ b/libtests/rc4.cc
@@ -14,8 +14,7 @@ static void other_tests()
// Test cases not covered by the pipeline: string as key, convert
// in place
RC4 r(reinterpret_cast<unsigned char const*>("quack"));
- auto data = std::unique_ptr<unsigned char[]>(
- new unsigned char[6], std::default_delete<unsigned char[]>());
+ auto data = std::make_unique<unsigned char[]>(6);
memcpy(data.get(), "potato", 6);
r.process(data.get(), 6);
assert(memcmp(data.get(), "\xa5\x6f\xe7\x27\x2b\x5c", 6) == 0);