search for: multicert

Displaying 1 result from an estimated 1 matches for "multicert".

2015 Jul 29
2
[PATCH] ssh: Add option to present certificates on command line
...+74,7 @@ LTESTS= connect \ hostkey-agent \ keygen-knownhosts \ hostkey-rotate \ + ssh-cert \ principals-command diff --git a/regress/ssh-cert.sh b/regress/ssh-cert.sh new file mode 100644 index 0000000..152278b --- /dev/null +++ b/regress/ssh-cert.sh @@ -0,0 +1,136 @@ +# $OpenBSD: multicert.sh,v 1.1 2014/12/22 08:06:03 djm Exp $ +# Placed in the Public Domain. + +tid="ssh with certificates" + +rm -f $OBJ/user_ca_key* $OBJ/user_key* +rm -f $OBJ/cert_user_key* + +# Create a CA key +${SSHKEYGEN} -q -N '' -t ed25519 -f $OBJ/user_ca_key1 ||\ + fatal "ssh-keygen faile...