1
2
3
4
5
6
7
8
9
10
11
12 #ifndef _ZCRYPT_MSGTYPE50_H_
13 #define _ZCRYPT_MSGTYPE50_H_
14
15 #define MSGTYPE50_NAME "zcrypt_msgtype50"
16 #define MSGTYPE50_VARIANT_DEFAULT 0
17
18 #define MSGTYPE50_CRB2_MAX_MSG_SIZE 0x390
19 #define MSGTYPE50_CRB3_MAX_MSG_SIZE 0x710
20
21 #define MSGTYPE_ADJUSTMENT 0x08
22
23 unsigned int get_rsa_modex_fc(struct ica_rsa_modexpo *, int *);
24 unsigned int get_rsa_crt_fc(struct ica_rsa_modexpo_crt *, int *);
25
26 void zcrypt_msgtype50_init(void);
27 void zcrypt_msgtype50_exit(void);
28
29 #endif