Fixed Crypto hal source code. Remove undefine variables.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12081 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
parent
8143b7257b
commit
4563b95558
|
@ -623,8 +623,7 @@ cryerror_t cryEncryptAES_CTR(CRYDriver *cryp,
|
||||||
(void)size;
|
(void)size;
|
||||||
(void)in;
|
(void)in;
|
||||||
(void)out;
|
(void)out;
|
||||||
(void)nonce;
|
(void)iv;
|
||||||
(void)cnt;
|
|
||||||
|
|
||||||
return CRY_ERR_INV_ALGO;
|
return CRY_ERR_INV_ALGO;
|
||||||
#endif
|
#endif
|
||||||
|
@ -678,8 +677,7 @@ cryerror_t cryDecryptAES_CTR(CRYDriver *cryp,
|
||||||
(void)size;
|
(void)size;
|
||||||
(void)in;
|
(void)in;
|
||||||
(void)out;
|
(void)out;
|
||||||
(void)nonce;
|
(void)iv;
|
||||||
(void)cnt;
|
|
||||||
|
|
||||||
return CRY_ERR_INV_ALGO;
|
return CRY_ERR_INV_ALGO;
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue