diff options
author | 2007-06-07 19:41:46 +0000 | |
---|---|---|
committer | 2007-06-07 19:41:46 +0000 | |
commit | 7d683597796376a039759aa1709f13bb8b1f8f61 (patch) | |
tree | 8f9ecf0ac483b8364bf29c85c4fa6eb3b9e862da | |
parent | Add a new MAC algorithm for data integrity, UMAC-64 (not default yet, must (diff) | |
download | wireguard-openbsd-7d683597796376a039759aa1709f13bb8b1f8f61.tar.xz wireguard-openbsd-7d683597796376a039759aa1709f13bb8b1f8f61.zip |
test umac-64@openssh.com
ok djm@
-rw-r--r-- | regress/usr.bin/ssh/cipher-speed.sh | 4 | ||||
-rw-r--r-- | regress/usr.bin/ssh/try-ciphers.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/regress/usr.bin/ssh/cipher-speed.sh b/regress/usr.bin/ssh/cipher-speed.sh index 5925111438a..d39a829d4d6 100644 --- a/regress/usr.bin/ssh/cipher-speed.sh +++ b/regress/usr.bin/ssh/cipher-speed.sh @@ -1,4 +1,4 @@ -# $OpenBSD: cipher-speed.sh,v 1.2 2005/05/24 04:09:54 djm Exp $ +# $OpenBSD: cipher-speed.sh,v 1.3 2007/06/07 19:41:46 pvalchev Exp $ # Placed in the Public Domain. tid="cipher speed" @@ -12,7 +12,7 @@ tries="1 2" DATA=/bin/ls DATA=/bsd -macs="hmac-sha1 hmac-md5 hmac-sha1-96 hmac-md5-96" +macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc arcfour128 arcfour256 arcfour aes192-cbc aes256-cbc aes128-ctr" diff --git a/regress/usr.bin/ssh/try-ciphers.sh b/regress/usr.bin/ssh/try-ciphers.sh index 7f69fdd561d..d1e8eeae75c 100644 --- a/regress/usr.bin/ssh/try-ciphers.sh +++ b/regress/usr.bin/ssh/try-ciphers.sh @@ -1,4 +1,4 @@ -# $OpenBSD: try-ciphers.sh,v 1.10 2005/05/24 04:10:54 djm Exp $ +# $OpenBSD: try-ciphers.sh,v 1.11 2007/06/07 19:41:46 pvalchev Exp $ # Placed in the Public Domain. tid="try ciphers" @@ -7,7 +7,7 @@ ciphers="aes128-cbc 3des-cbc blowfish-cbc cast128-cbc arcfour128 arcfour256 arcfour aes192-cbc aes256-cbc rijndael-cbc@lysator.liu.se aes128-ctr aes192-ctr aes256-ctr" -macs="hmac-sha1 hmac-md5 hmac-sha1-96 hmac-md5-96" +macs="hmac-sha1 hmac-md5 umac-64@openssh.com hmac-sha1-96 hmac-md5-96" for c in $ciphers; do for m in $macs; do |