diff options
Diffstat (limited to '')
-rw-r--r-- | doc/man/libkeccak_generalised_sum_fd.3 | 1 | ||||
-rw-r--r-- | doc/man/libkeccak_keccaksum_fd.3 | 1 | ||||
-rw-r--r-- | doc/man/libkeccak_rawshakesum_fd.3 | 1 | ||||
-rw-r--r-- | doc/man/libkeccak_sha3sum_fd.3 | 1 | ||||
-rw-r--r-- | doc/man/libkeccak_shakesum_fd.3 | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/doc/man/libkeccak_generalised_sum_fd.3 b/doc/man/libkeccak_generalised_sum_fd.3 index 6f0d5ec..af8db9a 100644 --- a/doc/man/libkeccak_generalised_sum_fd.3 +++ b/doc/man/libkeccak_generalised_sum_fd.3 @@ -87,6 +87,7 @@ if (libkeccak_generalised_sum_fd(STDIN_FILENO, &state, &spec, NULL, binhash) < 0 goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); +libkeccak_state_destroy(&state); .fi .SH SEE ALSO .BR libkeccak_behex_lower (3), diff --git a/doc/man/libkeccak_keccaksum_fd.3 b/doc/man/libkeccak_keccaksum_fd.3 index 1e70370..71d4f76 100644 --- a/doc/man/libkeccak_keccaksum_fd.3 +++ b/doc/man/libkeccak_keccaksum_fd.3 @@ -85,6 +85,7 @@ if (libkeccak_keccaksum_fd(STDIN_FILENO, &state, &spec, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); +libkeccak_state_destroy(&state); .fi .SH SEE ALSO .BR libkeccak_behex_lower (3), diff --git a/doc/man/libkeccak_rawshakesum_fd.3 b/doc/man/libkeccak_rawshakesum_fd.3 index f158616..efc8f6b 100644 --- a/doc/man/libkeccak_rawshakesum_fd.3 +++ b/doc/man/libkeccak_rawshakesum_fd.3 @@ -78,6 +78,7 @@ if (libkeccak_rawshakesum_fd(STDIN_FILENO, &state, 256, 512, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); +libkeccak_state_destroy(&state); .fi .SH SEE ALSO .BR libkeccak_behex_lower (3), diff --git a/doc/man/libkeccak_sha3sum_fd.3 b/doc/man/libkeccak_sha3sum_fd.3 index daacd2e..6f5b573 100644 --- a/doc/man/libkeccak_sha3sum_fd.3 +++ b/doc/man/libkeccak_sha3sum_fd.3 @@ -76,6 +76,7 @@ if (libkeccak_sha3sum_fd(STDIN_FILENO, &state, 256, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); +libkeccak_state_destroy(&state); .fi .SH SEE ALSO .BR libkeccak_behex_lower (3), diff --git a/doc/man/libkeccak_shakesum_fd.3 b/doc/man/libkeccak_shakesum_fd.3 index 0b86e6e..4b9082c 100644 --- a/doc/man/libkeccak_shakesum_fd.3 +++ b/doc/man/libkeccak_shakesum_fd.3 @@ -78,6 +78,7 @@ if (libkeccak_shakesum_fd(STDIN_FILENO, &state, 256, 512, binhash) < 0) goto fail; libkeccak_behex_lower(hexhash, binhash, sizeof(binhash)); printf("%s\\n", hexhash); +libkeccak_state_destroy(&state); .fi .SH SEE ALSO .BR libkeccak_behex_lower (3), |