diff options
Diffstat (limited to 'src/libstrongswan/crypto')
-rw-r--r-- | src/libstrongswan/crypto/crypto_tester.h | 2 | ||||
-rw-r--r-- | src/libstrongswan/crypto/prf_plus.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libstrongswan/crypto/crypto_tester.h b/src/libstrongswan/crypto/crypto_tester.h index 34dfa9489..1b02cb469 100644 --- a/src/libstrongswan/crypto/crypto_tester.h +++ b/src/libstrongswan/crypto/crypto_tester.h @@ -83,7 +83,7 @@ struct signer_test_vector_t { size_t len; /** input data */ u_char *data; - /** expected output, with ouput size of the tested algorithm */ + /** expected output, with output size of the tested algorithm */ u_char *mac; }; diff --git a/src/libstrongswan/crypto/prf_plus.c b/src/libstrongswan/crypto/prf_plus.c index 6b7f8f851..a26010aae 100644 --- a/src/libstrongswan/crypto/prf_plus.c +++ b/src/libstrongswan/crypto/prf_plus.c @@ -115,8 +115,8 @@ METHOD(prf_plus_t, allocate_bytes, bool, METHOD(prf_plus_t, destroy, void, private_prf_plus_t *this) { - free(this->buffer.ptr); - free(this->seed.ptr); + chunk_clear(&this->buffer); + chunk_clear(&this->seed); free(this); } |