Displaying 1 result from an estimated 1 matches for "37036908994l".
2003 Sep 16
0
help verifying ssh-agent signature from python?
...man page and the source code and wrote some python code
http://www.w3.org/2000/10/swap/util/sshAuth.py
v 1.4 2003/09/16 04:36:24
to talk to ssh-agent; in particular, to get it to RSA-sign
a string passed from the command line, ala:
$ python sshAuth.py abc
signature: ssh-rsa 5560602945671...37036908994L
After getting the protocol wrong and killing my ssh-agent
a few dozen times, I got it working: decoding the
key from the uuencoded blob in my ~/.ssh/authorized_keys
file, finding the socket, formatting the request,
and decoding the reply.
Now I'm trying to verify the signature in the reply
us...