summaryrefslogtreecommitdiff
path: root/tests/key_blob_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/key_blob_test.cpp')
-rw-r--r--tests/key_blob_test.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/key_blob_test.cpp b/tests/key_blob_test.cpp
index f69551b..2c751f1 100644
--- a/tests/key_blob_test.cpp
+++ b/tests/key_blob_test.cpp
@@ -15,6 +15,7 @@
*/
#include <algorithm>
+#include <utility>
#include <gtest/gtest.h>
@@ -79,7 +80,7 @@ class KeyBlobTest : public ::testing::TestWithParam<AuthEncryptedBlobFormat>,
keymaster_error_t Decrypt() {
auto result =
- DecryptKey(move(deserialized_key_), hidden_, secure_deletion_data_, master_key_);
+ DecryptKey(std::move(deserialized_key_), hidden_, secure_deletion_data_, master_key_);
if (!result) return result.error();
decrypted_plaintext_ = std::move(*result);
return KM_ERROR_OK;