Searched refs:datablob (Results 1 – 6 of 6) sorted by relevance
/linux/security/keys/trusted-keys/ |
A D | trusted_core.c | 74 c = strsep(datablob, " \t"); in datablob_parse() 81 c = strsep(datablob, " \t"); in datablob_parse() 92 c = strsep(datablob, " \t"); in datablob_parse() 143 char *datablob, *orig_datablob; in trusted_instantiate() local 152 if (!datablob) in trusted_instantiate() 154 memcpy(datablob, prep->data, datalen); in trusted_instantiate() 155 datablob[datalen] = '\0'; in trusted_instantiate() 223 char *datablob, *orig_datablob; in trusted_update() local 235 if (!datablob) in trusted_update() 244 memcpy(datablob, prep->data, datalen); in trusted_update() [all …]
|
A D | trusted_tee.c | 63 static int trusted_tee_seal(struct trusted_key_payload *p, char *datablob) in trusted_tee_seal() argument 124 static int trusted_tee_unseal(struct trusted_key_payload *p, char *datablob) in trusted_tee_unseal() argument
|
A D | trusted_tpm1.c | 888 static int trusted_tpm_seal(struct trusted_key_payload *p, char *datablob) in trusted_tpm_seal() argument 902 ret = getoptions(datablob, p, options); in trusted_tpm_seal() 933 static int trusted_tpm_unseal(struct trusted_key_payload *p, char *datablob) in trusted_tpm_unseal() argument 947 ret = getoptions(datablob, p, options); in trusted_tpm_unseal()
|
/linux/security/keys/encrypted-keys/ |
A D | encrypted.c | 181 keyword = strsep(&datablob, " \t"); in datablob_parse() 189 p = strsep(&datablob, " \t"); in datablob_parse() 201 *master_desc = strsep(&datablob, " \t"); in datablob_parse() 220 *decrypted_datalen = strsep(&datablob, " \t"); in datablob_parse() 242 *hex_encoded_iv = strsep(&datablob, " \t"); in datablob_parse() 785 char *datablob = NULL; in encrypted_instantiate() local 796 datablob = kmalloc(datalen + 1, GFP_KERNEL); in encrypted_instantiate() 797 if (!datablob) in encrypted_instantiate() 799 datablob[datalen] = 0; in encrypted_instantiate() 800 memcpy(datablob, prep->data, datalen); in encrypted_instantiate() [all …]
|
/linux/include/keys/ |
A D | trusted-type.h | 62 int (*seal)(struct trusted_key_payload *p, char *datablob); 65 int (*unseal)(struct trusted_key_payload *p, char *datablob);
|
/linux/Documentation/security/keys/ |
A D | ecryptfs.rst | 28 In order to avoid known-plaintext attacks, the datablob obtained through
|
Completed in 14 milliseconds