summaryrefslogtreecommitdiff
path: root/sys/netinet
diff options
context:
space:
mode:
authorAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-11-17 04:15:43 +0000
committerAngelos D. Keromytis <angelos@cvs.openbsd.org>2000-11-17 04:15:43 +0000
commit5da004dfe68c116a200e167344b05858fdc5f371 (patch)
tree7111a830813595148748c6effd27b7a9a9347a16 /sys/netinet
parentfe3cf33fe325edb0071e993302305654650ace98 (diff)
*HMAC96->*HMAC
Diffstat (limited to 'sys/netinet')
-rw-r--r--sys/netinet/ip_ah.c8
-rw-r--r--sys/netinet/ip_esp.c8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/netinet/ip_ah.c b/sys/netinet/ip_ah.c
index fd0723b47a6..7483e4e2713 100644
--- a/sys/netinet/ip_ah.c
+++ b/sys/netinet/ip_ah.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_ah.c,v 1.44 2000/09/19 03:20:58 angelos Exp $ */
+/* $OpenBSD: ip_ah.c,v 1.45 2000/11/17 04:15:42 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -108,15 +108,15 @@ ah_init(struct tdb *tdbp, struct xformsw *xsp, struct ipsecinit *ii)
/* Authentication operation */
switch (ii->ii_authalg)
{
- case SADB_AALG_MD5HMAC96:
+ case SADB_AALG_MD5HMAC:
thash = &auth_hash_hmac_md5_96;
break;
- case SADB_AALG_SHA1HMAC96:
+ case SADB_AALG_SHA1HMAC:
thash = &auth_hash_hmac_sha1_96;
break;
- case SADB_X_AALG_RIPEMD160HMAC96:
+ case SADB_AALG_RIPEMD160HMAC:
thash = &auth_hash_hmac_ripemd_160_96;
break;
diff --git a/sys/netinet/ip_esp.c b/sys/netinet/ip_esp.c
index c0821f1c735..8b232b8d7b9 100644
--- a/sys/netinet/ip_esp.c
+++ b/sys/netinet/ip_esp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ip_esp.c,v 1.50 2000/10/09 22:20:40 angelos Exp $ */
+/* $OpenBSD: ip_esp.c,v 1.51 2000/11/17 04:15:42 angelos Exp $ */
/*
* The authors of this code are John Ioannidis (ji@tla.org),
@@ -169,15 +169,15 @@ esp_init(struct tdb *tdbp, struct xformsw *xsp, struct ipsecinit *ii)
{
switch (ii->ii_authalg)
{
- case SADB_AALG_MD5HMAC96:
+ case SADB_AALG_MD5HMAC:
thash = &auth_hash_hmac_md5_96;
break;
- case SADB_AALG_SHA1HMAC96:
+ case SADB_AALG_SHA1HMAC:
thash = &auth_hash_hmac_sha1_96;
break;
- case SADB_X_AALG_RIPEMD160HMAC96:
+ case SADB_AALG_RIPEMD160HMAC:
thash = &auth_hash_hmac_ripemd_160_96;
break;