diff options
Diffstat (limited to 'src/pluto/alg/ike_alg_3des.c')
-rw-r--r-- | src/pluto/alg/ike_alg_3des.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/pluto/alg/ike_alg_3des.c b/src/pluto/alg/ike_alg_3des.c index 1f6d6bca8..9259ca513 100644 --- a/src/pluto/alg/ike_alg_3des.c +++ b/src/pluto/alg/ike_alg_3des.c @@ -21,15 +21,15 @@ struct encrypt_desc encrypt_desc_3des = { - algo_type: IKE_ALG_ENCRYPT, - algo_id: OAKLEY_3DES_CBC, - algo_next: NULL, + algo_type: IKE_ALG_ENCRYPT, + algo_id: OAKLEY_3DES_CBC, + algo_next: NULL, - enc_blocksize: DES_BLOCK_SIZE, - keydeflen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, - keyminlen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, - keymaxlen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, - enc_testvectors: NULL + enc_blocksize: DES_BLOCK_SIZE, + keydeflen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, + keyminlen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, + keymaxlen: DES_BLOCK_SIZE * 3 * BITS_PER_BYTE, + enc_testvectors: NULL }; |