blob: 2eb72f6244d03d4250d6d1aa2248977aba79f5d9 [file] [log] [blame]
Gary Morrisonced8c6f2020-02-27 19:35:59 +00001/*
2 * Copyright (c) 2019-2020, Arm Limited. All rights reserved.
3 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 *
6 */
7
8#ifndef RANDOMIZATION_HPP
9#define RANDOMIZATION_HPP
10
11#include <string>
12
13using namespace std;
14
15string rand_key_usage (void);
16
17string rand_key_algorithm (void);
18
19string rand_key_type (void);
20
21#endif /* #ifndef RANDOMIZATION_HPP */