Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 43158
b: refs/heads/master
c: 7cf4c1a
h: refs/heads/master
v: v3
  • Loading branch information
Kazunori MIYAZAWA authored and David S. Miller committed Dec 7, 2006
1 parent 626e8b1 commit dea7b20
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5b2becf5dc8ebb760b0d1653604831dc0582a121
refs/heads/master: 7cf4c1a5fd13820d7591179c0b925d739b2be9a7
1 change: 1 addition & 0 deletions trunk/include/linux/pfkeyv2.h
Original file line number Diff line number Diff line change
Expand Up @@ -285,6 +285,7 @@ struct sadb_x_sec_ctx {
#define SADB_X_AALG_SHA2_384HMAC 6
#define SADB_X_AALG_SHA2_512HMAC 7
#define SADB_X_AALG_RIPEMD160HMAC 8
#define SADB_X_AALG_AES_XCBC_MAC 9
#define SADB_X_AALG_NULL 251 /* kame */
#define SADB_AALG_MAX 251

Expand Down
17 changes: 17 additions & 0 deletions trunk/net/xfrm/xfrm_algo.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,23 @@ static struct xfrm_algo_desc aalg_list[] = {
.sadb_alg_maxbits = 160
}
},
{
.name = "xcbc(aes)",

.uinfo = {
.auth = {
.icv_truncbits = 96,
.icv_fullbits = 128,
}
},

.desc = {
.sadb_alg_id = SADB_X_AALG_AES_XCBC_MAC,
.sadb_alg_ivlen = 0,
.sadb_alg_minbits = 128,
.sadb_alg_maxbits = 128
}
},
};

static struct xfrm_algo_desc ealg_list[] = {
Expand Down

0 comments on commit dea7b20

Please sign in to comment.