This source file includes following definitions.
- aa_calc_hash
- aa_calc_profile_hash
- aa_hash_size
1
2
3
4
5
6
7
8
9
10 #ifndef __APPARMOR_CRYPTO_H
11 #define __APPARMOR_CRYPTO_H
12
13 #include "policy.h"
14
15 #ifdef CONFIG_SECURITY_APPARMOR_HASH
16 unsigned int aa_hash_size(void);
17 char *aa_calc_hash(void *data, size_t len);
18 int aa_calc_profile_hash(struct aa_profile *profile, u32 version, void *start,
19 size_t len);
20 #else
21 static inline char *aa_calc_hash(void *data, size_t len)
22 {
23 return NULL;
24 }
25 static inline int aa_calc_profile_hash(struct aa_profile *profile, u32 version,
26 void *start, size_t len)
27 {
28 return 0;
29 }
30
31 static inline unsigned int aa_hash_size(void)
32 {
33 return 0;
34 }
35 #endif
36
37 #endif