1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- #ifndef SE_KEY_H
- #define SE_KEY_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdint.h>
- void SE_ReadKey_1(uint8_t *pKey);
- void SE_ReadKey_2(uint8_t *pKey);
- void SE_ReadKey_3(uint8_t *pKey);
- void SE_ReadKey_1_Pub(uint8_t *pPubKey);
- void SE_ReadKey_2_Pub(uint8_t *pPubKey);
- void SE_ReadKey_3_Pub(uint8_t *pPubKey);
- void SE_ReadKey_Pairing(uint8_t *pPairingKey);
- #ifdef __cplusplus
- }
- #endif
- #endif
|