diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2012-06-30 14:51:32 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2012-06-30 14:51:32 +0000 |
commit | 9c052f54ffb5f0dab460bfdaf0d03887ab06f0b4 (patch) | |
tree | cdf38cf211a7fa8ccf5c79b9943e547cee0e77b5 /sbin/isakmpd/sa.c | |
parent | 41fc90c12d4733d36be15546cee99c4611bcaf51 (diff) |
enable use of AES-{192,256}-CTR, and explicitly of AES-128-CTR, for IPsec ESP
ok mikeb@
Diffstat (limited to 'sbin/isakmpd/sa.c')
-rw-r--r-- | sbin/isakmpd/sa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/isakmpd/sa.c b/sbin/isakmpd/sa.c index ac810b0368e..cc61d97bbf5 100644 --- a/sbin/isakmpd/sa.c +++ b/sbin/isakmpd/sa.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sa.c,v 1.116 2012/01/16 08:45:55 eric Exp $ */ +/* $OpenBSD: sa.c,v 1.117 2012/06/30 14:51:31 naddy Exp $ */ /* $EOM: sa.c,v 1.112 2000/12/12 00:22:52 niklas Exp $ */ /* @@ -562,11 +562,11 @@ report_proto(FILE *fd, struct proto *proto) break; case IPSEC_ESP_AES: - fprintf(fd, "AES-128 (CBC)\n"); + fprintf(fd, "AES (CBC)\n"); break; - case IPSEC_ESP_AES_128_CTR: - fprintf(fd, "AES-128 (CTR)\n"); + case IPSEC_ESP_AES_CTR: + fprintf(fd, "AES (CTR)\n"); break; case IPSEC_ESP_AES_GCM_16: |