diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-12 04:43:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-09-12 04:43:25 +0000 |
commit | 76add172cec4e1c9466dbc1965e2c926ca9184c1 (patch) | |
tree | 43d36cd724b11230cedea4bb315f1c3ca5fc5285 /src/utils/keymgr/keystore.h | |
parent | Adding upstream version 3.3.7. (diff) | |
download | knot-76add172cec4e1c9466dbc1965e2c926ca9184c1.tar.xz knot-76add172cec4e1c9466dbc1965e2c926ca9184c1.zip |
Adding upstream version 3.3.8.upstream/3.3.8
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/utils/keymgr/keystore.h')
-rw-r--r-- | src/utils/keymgr/keystore.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/utils/keymgr/keystore.h b/src/utils/keymgr/keystore.h new file mode 100644 index 0000000..6adb5df --- /dev/null +++ b/src/utils/keymgr/keystore.h @@ -0,0 +1,24 @@ +/* Copyright (C) 2024 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz> + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <https://www.gnu.org/licenses/>. + */ + +#pragma once + +#include "utils/keymgr/functions.h" + +int keymgr_keystore_test(const char *keystore_id, keymgr_list_params_t *params); + +int keymgr_keystore_bench(const char *keystore_id, keymgr_list_params_t *params, + uint16_t threads); |