Merge pull request #56 from cryptotronix/master

Minor compiler warning cleanup: removes unused variables.
This commit is contained in:
Ken MacKay
2015-09-01 19:45:59 -07:00
2 changed files with 145 additions and 149 deletions
+144 -148
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -229,7 +229,7 @@ Inputs:
Returns 1 if the signature is valid, 0 if it is invalid.
*/
int uECC_verify(const uint8_t private_key[uECC_BYTES*2],
int uECC_verify(const uint8_t public_key[uECC_BYTES*2],
const uint8_t hash[uECC_BYTES],
const uint8_t signature[uECC_BYTES*2]);