blob: 2af8658f0ebcfd7d85ee2f47282c7bc9e7b9d6b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_KERNEL_SBLAUTHMGR_H
#define _VDSUITE_KERNEL_SBLAUTHMGR_H
#include <scetypes.h>
#ifdef __cplusplus
extern "C" {
#endif
int sceSblAuthMgrClearDmac5Key(int slot_id, int val);
int sceSblAuthMgrSetDmac5Key(const void *key, SceSize keylen, int slot_id, int key_id);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_KERNEL_SBLAUTHMGR_H */
|