keys: add new key-type encrypted
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / security / keys / encrypted_defined.h
blobc298a3f1cf703aefc5d3791634be858f7cf280ee
1 #ifndef __ENCRYPTED_KEY_H
2 #define __ENCRYPTED_KEY_H
4 #define ENCRYPTED_DEBUG 0
6 #if ENCRYPTED_DEBUG
7 static inline void dump_master_key(const u8 *master_key,
8 unsigned int master_keylen)
10 print_hex_dump(KERN_ERR, "master key: ", DUMP_PREFIX_NONE, 32, 1,
11 master_key, master_keylen, 0);
14 static inline void dump_decrypted_data(struct encrypted_key_payload *epayload)
16 print_hex_dump(KERN_ERR, "decrypted data: ", DUMP_PREFIX_NONE, 32, 1,
17 epayload->decrypted_data,
18 epayload->decrypted_datalen, 0);
21 static inline void dump_encrypted_data(struct encrypted_key_payload *epayload,
22 unsigned int encrypted_datalen)
24 print_hex_dump(KERN_ERR, "encrypted data: ", DUMP_PREFIX_NONE, 32, 1,
25 epayload->encrypted_data, encrypted_datalen, 0);
28 static inline void dump_hmac(const char *str, const u8 *digest,
29 unsigned int hmac_size)
31 if (str)
32 pr_info("encrypted_key: %s", str);
33 print_hex_dump(KERN_ERR, "hmac: ", DUMP_PREFIX_NONE, 32, 1, digest,
34 hmac_size, 0);
36 #else
37 static inline void dump_master_key(const u8 *master_key,
38 unsigned int master_keylen)
42 static inline void dump_decrypted_data(struct encrypted_key_payload *epayload)
46 static inline void dump_encrypted_data(struct encrypted_key_payload *epayload,
47 unsigned int encrypted_datalen)
51 static inline void dump_hmac(const char *str, const u8 *digest,
52 unsigned int hmac_size)
55 #endif
56 #endif