// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "util/crypto/random_bytes.h" #include "openssl/rand.h" #include "util/osp_logging.h" namespace openscreen { std::array<uint8_t, 16> GenerateRandomBytes16() { … } void GenerateRandomBytes(uint8_t* out, int len) { … } } // namespace openscreen