File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed
Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 4848
4949struct crypt_device ;
5050struct luks2_reencrypt ;
51-
52- struct volume_key {
53- int id ;
54- size_t keylength ; /* length in bytes */
55- const char * key_description ; /* keyring key name/description */
56- key_type_t keyring_key_type ; /* kernel keyring key type */
57- bool uploaded ; /* uploaded to keyring, can drop it */
58- struct volume_key * next ;
59- char * key ;
60- };
51+ struct volume_key ;
6152
6253typedef enum {
6354 KEY_QUALITY_KEY = 0 ,
Original file line number Diff line number Diff line change 1313
1414#include "internal.h"
1515
16+ struct volume_key {
17+ int id ;
18+ size_t keylength ; /* length in bytes */
19+ const char * key_description ; /* keyring key name/description */
20+ key_type_t keyring_key_type ; /* kernel keyring key type */
21+ bool uploaded ; /* uploaded to keyring, can drop it */
22+ struct volume_key * next ;
23+ char * key ;
24+ };
25+
1626struct volume_key * crypt_alloc_volume_key (size_t keylength , const char * key )
1727{
1828 struct volume_key * vk ;
You can’t perform that action at this time.
0 commit comments