Description
-
Returns RSA public key in SSH1 format.
Property type
-
A String value.
Syntax
-
object.PublicKeyRSA1
The PublicKeyRSA1 Property syntax has these parts:
| object |
An expression
evaluating to an object of type SSHKeyPair. |
-
Remarks
-
PublicKeyRSA1 will return string information that represents
stored public key in format suitable for SSH1 servers. It can be
used only for RSA keys, since SSH1 servers only support RSA cipher
authentication.
Typically, it will look like this:
1024 35
1491447565979391620804974425532607679275854098033229 ....
You can easily paste contents of this property to file on your
server system that keeps public keys (try -/.ssh/authorized_keys).
|