Documentation
¶
Overview ¶
The sshkey provides a simple way to generate a 256-bit ECDSA private key for SSH.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GenerateKey ¶
GenerateKey will generate an OpenSSH ECDSA private key using the P-256 elliptic curve.
The resulting key is returned as a byte slice in OpenSSH PEM format.
func ParseKey ¶
func ParseKey(pemBytes []byte) (*ecdsa.PrivateKey, error)
ParseKey will parse the provided byte slice (in OpenSSH ECDSA Private Key format) and return an *ecdsa.PrivateKey.
Any parsing errors will result in a nil *ecdsa.PrivateKey returned along with the error.
Only ECDSA format private keys are supported by this function.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.