diff options
Diffstat (limited to 'Source/charon/transforms/crypters/crypter.h')
-rw-r--r-- | Source/charon/transforms/crypters/crypter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/charon/transforms/crypters/crypter.h b/Source/charon/transforms/crypters/crypter.h index 1d2b2b35c..878ea5ef4 100644 --- a/Source/charon/transforms/crypters/crypter.h +++ b/Source/charon/transforms/crypters/crypter.h @@ -118,10 +118,11 @@ struct crypter_t { * @brief Generic constructor for crypter_t objects. * * @param encryption_algorithm Algorithm to use for crypter + * @param blocksize block size in bytes * @return * - crypter_t if successfully * - NULL if out of ressources or crypter not supported */ -crypter_t *crypter_create(encryption_algorithm_t encryption_algorithm); +crypter_t *crypter_create(encryption_algorithm_t encryption_algorithm, size_t blocksize); #endif /*CRYPTER_H_*/ |