xref: /spdk/module/keyring/linux/keyring_linux.h (revision 8afdeef3becfe9409cc9e7372bd0bc10e8b7d46d)
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