Added output after generating keys
continuous-integration/drone/push Build is failing Details

This commit is contained in:
kolaente 2019-05-07 13:59:08 +02:00
parent 3d60be9eef
commit 7d150ff2f3
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@
package key
import (
"encoding/hex"
"golang.org/x/crypto/ed25519"
"io/ioutil"
"log"
@ -40,4 +41,5 @@ func GenKey() {
}
log.Println("Keys were generated successfully.")
log.Printf("Public key (hex-encoded string): %s", hex.EncodeToString(pk))
}