Blame view

security/keys/encrypted.h 1.4 KB
7e70cb497   Mimi Zohar   keys: add new key...
1
2
3
4
5
6
  #ifndef __ENCRYPTED_KEY_H
  #define __ENCRYPTED_KEY_H
  
  #define ENCRYPTED_DEBUG 0
  
  #if ENCRYPTED_DEBUG
3b1826ceb   Mimi Zohar   encrypted-keys: s...
7
  static inline void dump_master_key(const u8 *master_key, size_t master_keylen)
7e70cb497   Mimi Zohar   keys: add new key...
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
  {
  	print_hex_dump(KERN_ERR, "master key: ", DUMP_PREFIX_NONE, 32, 1,
  		       master_key, master_keylen, 0);
  }
  
  static inline void dump_decrypted_data(struct encrypted_key_payload *epayload)
  {
  	print_hex_dump(KERN_ERR, "decrypted data: ", DUMP_PREFIX_NONE, 32, 1,
  		       epayload->decrypted_data,
  		       epayload->decrypted_datalen, 0);
  }
  
  static inline void dump_encrypted_data(struct encrypted_key_payload *epayload,
  				       unsigned int encrypted_datalen)
  {
  	print_hex_dump(KERN_ERR, "encrypted data: ", DUMP_PREFIX_NONE, 32, 1,
  		       epayload->encrypted_data, encrypted_datalen, 0);
  }
  
  static inline void dump_hmac(const char *str, const u8 *digest,
  			     unsigned int hmac_size)
  {
  	if (str)
  		pr_info("encrypted_key: %s", str);
  	print_hex_dump(KERN_ERR, "hmac: ", DUMP_PREFIX_NONE, 32, 1, digest,
  		       hmac_size, 0);
  }
  #else
3b1826ceb   Mimi Zohar   encrypted-keys: s...
36
  static inline void dump_master_key(const u8 *master_key, size_t master_keylen)
7e70cb497   Mimi Zohar   keys: add new key...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  {
  }
  
  static inline void dump_decrypted_data(struct encrypted_key_payload *epayload)
  {
  }
  
  static inline void dump_encrypted_data(struct encrypted_key_payload *epayload,
  				       unsigned int encrypted_datalen)
  {
  }
  
  static inline void dump_hmac(const char *str, const u8 *digest,
  			     unsigned int hmac_size)
  {
  }
  #endif
  #endif