blob: 0b5f64d2a32fe8aa77a02aaa73565d3fc2040c37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef _PSP2_KERNEL_SBLAUTHMGR_H_
#define _PSP2_KERNEL_SBLAUTHMGR_H_
#include <psp2kern/types.h>
#ifdef __cplusplus
extern "C" {
#endif
int sceSblAuthMgrClearDmac5Key(int slot_id, int val);
int sceSblAuthMgrSetDmac5Key(const void *key, size_t keylen, int slot_id, int key_id);
#ifdef __cplusplus
}
#endif
#endif /* _PSP2_KERNEL_SBLAUTHMGR_H_ */
|