Skip to content

Commit

Permalink
[IPSEC]: added the entry of Camellia cipher algorithm to ealg_list[]
Browse files Browse the repository at this point in the history
This patch adds the entry of Camellia cipher algorithm to ealg_list[].

Signed-off-by: Noriaki TAKAMIYA <takamiya@po.ntts.co.jp>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
  • Loading branch information
Noriaki TAKAMIYA authored and herbertx committed Feb 6, 2007
1 parent 390fbd1 commit 6a0dc8d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions net/xfrm/xfrm_algo.c
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,23 @@ static struct xfrm_algo_desc ealg_list[] = {
.sadb_alg_maxbits = 256,
}
},
{
.name = "cbc(camellia)",

.uinfo = {
.encr = {
.blockbits = 128,
.defkeybits = 128,
}
},

.desc = {
.sadb_alg_id = SADB_X_EALG_CAMELLIACBC,
.sadb_alg_ivlen = 8,
.sadb_alg_minbits = 128,
.sadb_alg_maxbits = 256
}
},
{
.name = "cbc(twofish)",
.compat = "twofish",
Expand Down

0 comments on commit 6a0dc8d

Please sign in to comment.