diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2002-01-17 13:21:29 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2002-01-17 13:21:29 +0000 |
commit | 371c6d85717d6a5169bbaa97d05598abe79770f3 (patch) | |
tree | 7136612816889abf6fadd0599d23574a5dc57565 /regress/usr.bin/ssh/Makefile | |
parent | 907db794bbebdf8ff12bca2910022111e1d45230 (diff) |
regress for ssh-keygen
Diffstat (limited to 'regress/usr.bin/ssh/Makefile')
-rw-r--r-- | regress/usr.bin/ssh/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/regress/usr.bin/ssh/Makefile b/regress/usr.bin/ssh/Makefile new file mode 100644 index 00000000000..30a4996f0ab --- /dev/null +++ b/regress/usr.bin/ssh/Makefile @@ -0,0 +1,41 @@ +# $OpenBSD: Makefile,v 1.1 2002/01/17 13:21:28 markus Exp $ + +REGRESSTARGETS=t1 t2 t3 t4 t5 t6 t7 + +CLEANFILES+= t2.out t6.out1 t6.out2 t7.out t7.out.pub + +t1: + ssh-keygen -if ${.CURDIR}/rsa_ssh2.prv | diff - ${.CURDIR}/rsa_openssh.prv + +t2: + cat ${.CURDIR}/rsa_openssh.prv > t2.out + chmod 600 t2.out + ssh-keygen -yf t2.out | diff - ${.CURDIR}/rsa_openssh.pub + +t3: + ssh-keygen -ef ${.CURDIR}/rsa_openssh.pub |\ + ssh-keygen -if /dev/stdin |\ + diff - ${.CURDIR}/rsa_openssh.pub + +t4: + ssh-keygen -lf ${.CURDIR}/rsa_openssh.pub |\ + awk '{print $$2}' | diff - ${.CURDIR}/t4.ok + +t5: + ssh-keygen -Bf ${.CURDIR}/rsa_openssh.pub |\ + awk '{print $$2}' | diff - ${.CURDIR}/t5.ok + +t6: + ssh-keygen -if ${.CURDIR}/dsa_ssh2.prv > t6.out1 + ssh-keygen -if ${.CURDIR}/dsa_ssh2.pub > t6.out2 + chmod 600 t6.out1 + ssh-keygen -yf t6.out1 | diff - t6.out2 + +t7.out: + ssh-keygen -q -t rsa -N '' -f $@ + +t7: t7.out + ssh-keygen -lf t7.out > /dev/null + ssh-keygen -Bf t7.out > /dev/null + +.include <bsd.regress.mk> |