From 57fcfc2a0b8ecd266ce130dab9a29b7ceb558d64 Mon Sep 17 00:00:00 2001 From: rsc Date: Sun, 13 Feb 2005 18:04:20 +0000 Subject: add others --- src/cmd/auth/dsa2ssh.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/cmd/auth/dsa2ssh.c (limited to 'src/cmd/auth/dsa2ssh.c') diff --git a/src/cmd/auth/dsa2ssh.c b/src/cmd/auth/dsa2ssh.c new file mode 100644 index 00000000..489f2d21 --- /dev/null +++ b/src/cmd/auth/dsa2ssh.c @@ -0,0 +1,48 @@ +#include +#include +#include +#include +#include +#include "rsa2any.h" + +void +usage(void) +{ + fprint(2, "usage: auth/dsa2ssh [-c comment] [file]\n"); + exits("usage"); +} + +void +main(int argc, char **argv) +{ + DSApriv *k; + char *comment; + uchar buf[8192], *p; + + fmtinstall('B', mpfmt); + fmtinstall('[', encodefmt); + comment = ""; + ARGBEGIN{ + case 'c': + comment = EARGF(usage()); + break; + default: + usage(); + }ARGEND + + if(argc > 1) + usage(); + + if((k = getdsakey(argc, argv, 0, nil)) == nil) + sysfatal("%r"); + + p = buf; + p = put4(p, 7); + p = putn(p, "ssh-dss", 7); + p = putmp2(p, k->pub.p); + p = putmp2(p, k->pub.q); + p = putmp2(p, k->pub.alpha); + p = putmp2(p, k->pub.key); + print("ssh-dss %.*[ %s\n", p-buf, buf, comment); + exits(nil); +} -- cgit v1.2.3