int unitTests() { int errors = testCipherUtils(); errors += testMAC(); errors += doKeyTests(0); errors += testElite(); return errors; }
int unitTests() { int errors = testCipherUtils(); errors += testMAC(); errors += doKeyTests(0); errors += testElite(); errors += testOptMAC(); if(errors) { prnlog("OBS! There were errors!!!"); } return errors; }