示例#1
0
文件: main.c 项目: bforbort/proxmark3
int unitTests()
{
	int errors = testCipherUtils();
	errors += testMAC();
	errors += doKeyTests(0);
	errors += testElite();
	return errors;
}
示例#2
0
int unitTests()
{
	int errors = testCipherUtils();
	errors += testMAC();
	errors += doKeyTests(0);
	errors += testElite();
	errors += testOptMAC();


	if(errors)
    {
        prnlog("OBS! There were errors!!!");
    }
	return errors;
}