SEARCH  

NEWS

2010.10.06:11:36:28
Płatność kartą chroni przed upadłością biura podróży?
Aby uchronić się przed utratą pieniędzy wpłaconych na poczet przyszłej wycieczki, najlepiej zapłacić kartą płatniczą. W przypadku upadłości biura podróży i odwołania imprezy można złożyć reklamację w banku i powołać się na nieotrzymanie opłaconej usługi. W ten sposób odzyskamy swoje pieniądze, co może nie być takie proste, jeśli zapłacimy gotówką.

 

messageID:595560007367
author:Li Yewang
title: PATCH XFRM Use the simple name when addin
The encryption name such as "rfc3686(ctr(aes))" is too complex. I think simple name is better for user when using "ip xfrm state ..." command. Signed-off-by: Li Yewang <lyw@xxxxxxxxxxxxxx --- net/xfrm/xfrm_algo.c | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/net/xfrm/xfrm_algo.c b/net/xfrm/xfrm_algo.c index 743c013..6de2780 100644 --- a/net/xfrm/xfrm_algo.c +++ b/net/xfrm/xfrm_algo.c @@ -31,6 +31,7 @@ static struct xfrm_algo_desc aead_list[] = { { .name = "rfc4106(gcm(aes))", + .compat = "gcm", .uinfo = { .aead = { @@ -47,6 +48,7 @@ static struct xfrm_algo_desc aead_list[] = { }, { .name = "rfc4106(gcm(aes))", + .compat = "gcm", .uinfo = { .aead = { @@ -63,6 +65,7 @@ static struct xfrm_algo_desc aead_list[] = { }, { .name = "rfc4106(gcm(aes))", + .compat = "gcm", .uinfo = { .aead = { @@ -79,6 +82,7 @@ static struct xfrm_algo_desc aead_list[] = { }, { .name = "rfc4309(ccm(aes))", + .compat = "gcm", .uinfo = { .aead = { @@ -95,6 +99,7 @@ static struct xfrm_algo_desc aead_list[] = { }, { .name = "rfc4309(ccm(aes))", + .compat = "ccm", .uinfo = { .aead = { @@ -111,6 +116,7 @@ static struct xfrm_algo_desc aead_list[] = { }, { .name = "rfc4309(ccm(aes))", + .compat = "ccm", .uinfo = { .aead = { @@ -201,6 +207,7 @@ static struct xfrm_algo_desc aalg_list[] = { }, { .name = "hmac(sha384)", + .compat = "sha384", .uinfo = { .auth = { @@ -218,6 +225,7 @@ static struct xfrm_algo_desc aalg_list[] = { }, { .name = "hmac(sha512)", + .compat = "sha512", .uinfo = { .auth = { @@ -253,6 +261,7 @@ static struct xfrm_algo_desc aalg_list[] = { }, { .name = "xcbc(aes)", + .compat = "aes-xcbc", .uinfo = { .auth = { @@ -435,6 +444,7 @@ static struct xfrm_algo_desc ealg_list[] = { }, { .name = "rfc3686(ctr(aes))", + .compat = "aes-ctr", .uinfo = { .encr = { -- 1.6.4.1 -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at rel="nofollow" vger.kernel.org/majordomo-info.html vger.kernel.org/majordomo-info.html
Index