1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-26 09:21:28 +00:00

Fix Windows type warning

This commit is contained in:
Douglas Stebila 2019-04-14 20:31:17 -04:00
parent 97260c2d69
commit b80eebdd71

View File

@ -50,7 +50,7 @@ int main() {
uint8_t shared_secret_d[CRYPTO_BYTES]; uint8_t shared_secret_d[CRYPTO_BYTES];
int rc; int rc;
for (size_t i = 0; i < 48; i++) { for (uint8_t i = 0; i < 48; i++) {
entropy_input[i] = i; entropy_input[i] = i;
} }