Add hints on how to serialize ed25519 key

Related to #260
This commit is contained in:
Vishesh Handa
2020-12-26 11:07:09 +01:00
parent 1e57a816e7
commit 6767c79ed8

View File

@ -49,3 +49,9 @@ String privateKeyString() {
var str = '-----BEGIN OPENSSH PRIVATE KEY-----\n';
return str;
}
// Either the openssl code or the openssh-portable code
// or some go code
// -> https://golang.org/src/crypto/x509/pkcs8.go
// Key format is PKCS8 or OpenSSH.