diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-09-16 05:28:45 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2012-09-16 05:30:24 +0200 |
commit | ce1b13c5ea3ea0c7ba8b8250b2d91942ca0db065 (patch) | |
tree | 5259c1e3d3a51bb92ba64eab04a22ed66c84c497 /src/types.h | |
parent | 7305c533516df296124d6b2415482d2febb7328a (diff) | |
download | fastd-ce1b13c5ea3ea0c7ba8b8250b2d91942ca0db065.tar fastd-ce1b13c5ea3ea0c7ba8b8250b2d91942ca0db065.zip |
Make implementations used for AES128-CTR and GHASH configurable.
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h index c213118..c27a99c 100644 --- a/src/types.h +++ b/src/types.h @@ -38,6 +38,10 @@ typedef enum _fastd_mode { MODE_TUN, } fastd_mode; +typedef enum _fastd_alg_impl { + ALG_IMPL_DEFAULT, + ALG_IMPL_ALGIF, +} fastd_alg_impl; typedef struct _fastd_buffer fastd_buffer; |