xref: /spdk/module/keyring/linux/keyring_linux.h (revision 9b8579e4af16f0826736c09db858e0737f7556c5)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2024 Intel Corporation. All rights reserved.
3  */
4 
5 #ifndef SPDK_KEYRING_LINUX_H
6 #define SPDK_KEYRING_LINUX_H
7 
8 #include "spdk/stdinc.h"
9 
10 struct keyring_linux_opts {
11 	bool enable;
12 };
13 
14 int keyring_linux_set_opts(struct keyring_linux_opts *opts);
15 void keyring_linux_get_opts(struct keyring_linux_opts *opts);
16 
17 #endif /* SPDK_KEYRING_LINUX_H */
18