adding documentation/analysis of key format

This commit is contained in:
2020-09-11 23:06:51 -04:00
parent 456284a697
commit 6e032d8969
11 changed files with 267 additions and 124 deletions

6
sshkeys/interface.go Normal file
View File

@@ -0,0 +1,6 @@
package sshkeys
type OpenSSHKeypair interface {
GeneratePrivate(keyType uint8) error
GeneratePublic(keyType uint8) error
}