29 lines
716 B
C
Executable File
29 lines
716 B
C
Executable File
/*
|
|
**********************************************************************************************************************
|
|
* eGon
|
|
* the Embedded GO-ON Bootloader System
|
|
* eGON arm boot sub-system
|
|
*
|
|
* Copyright(C), 2006-2014, Allwinner Technology Co., Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* File :
|
|
*
|
|
* By : Jerry
|
|
*
|
|
* Version : V2.00
|
|
*
|
|
* Date :
|
|
*
|
|
* Descript:
|
|
**********************************************************************************************************************
|
|
*/
|
|
#ifndef __SUNXI_VERIFY_H__
|
|
#define __SUNXI_VERIFY_H__
|
|
|
|
int sunxi_verify_signature(void *buff, uint len, const char *cert_name);
|
|
|
|
#endif
|
|
|
|
|