aboutsummaryrefslogtreecommitdiffstats
path: root/libtransport/includes/hicn/transport/auth/crypto_hash.h
diff options
context:
space:
mode:
authorLuca Muscariello <muscariello@ieee.org>2023-01-31 12:19:54 +0000
committerGerrit Code Review <gerrit@fd.io>2023-01-31 12:19:54 +0000
commitf72846be51c7fd70310ea166cfc2ffbdc930f0e6 (patch)
treeabab210c50eb6679b346d0c431d207d072630cd4 /libtransport/includes/hicn/transport/auth/crypto_hash.h
parent0114da8f9cc492546c5dae21f4116997e073c397 (diff)
parent1db196beea9bbb9e78ad42abcdc0a1754ca19eed (diff)
Merge "feat(tests): add HMAC to functional tests"
Diffstat (limited to 'libtransport/includes/hicn/transport/auth/crypto_hash.h')
-rw-r--r--libtransport/includes/hicn/transport/auth/crypto_hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtransport/includes/hicn/transport/auth/crypto_hash.h b/libtransport/includes/hicn/transport/auth/crypto_hash.h
index fbe1d5160..9535e07c7 100644
--- a/libtransport/includes/hicn/transport/auth/crypto_hash.h
+++ b/libtransport/includes/hicn/transport/auth/crypto_hash.h
@@ -40,7 +40,7 @@ class CryptoHash {
// Constructors
CryptoHash();
CryptoHash(const CryptoHash &other);
- CryptoHash(CryptoHash &&other);
+ CryptoHash(CryptoHash &&other) noexcept;
CryptoHash(CryptoHashType hash_type);
CryptoHash(const uint8_t *hash, std::size_t size, CryptoHashType hash_type);
CryptoHash(const std::vector<uint8_t> &hash, CryptoHashType hash_type);