aboutsummaryrefslogtreecommitdiff
path: root/util/crypto/random_bytes.cc
diff options
context:
space:
mode:
Diffstat (limited to 'util/crypto/random_bytes.cc')
-rw-r--r--util/crypto/random_bytes.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/util/crypto/random_bytes.cc b/util/crypto/random_bytes.cc
index c090a762..6a4c9dcb 100644
--- a/util/crypto/random_bytes.cc
+++ b/util/crypto/random_bytes.cc
@@ -8,7 +8,6 @@
#include "util/osp_logging.h"
namespace openscreen {
-namespace crypto {
std::array<uint8_t, 16> GenerateRandomBytes16() {
std::array<uint8_t, 16> result;
@@ -21,5 +20,4 @@ void GenerateRandomBytes(uint8_t* out, int len) {
OSP_CHECK(RAND_bytes(out, len) == 1);
}
-} // namespace crypto
} // namespace openscreen