go-http-peering/cmd/keygen/get_public_key.go

21 lines
384 B
Go
Raw Normal View History

2019-02-22 17:35:49 +01:00
package main
import (
"fmt"
"forge.cadoles.com/Cadoles/go-http-peering/crypto"
2022-09-12 17:46:59 +02:00
"github.com/pkg/errors"
2019-02-22 17:35:49 +01:00
)
func getPublicKey() {
privateKey, err := loadPrivateKey()
if err != nil {
2022-09-12 17:46:59 +02:00
handleError(errors.WithStack(err))
2019-02-22 17:35:49 +01:00
}
publicPEM, err := crypto.EncodePublicKeyToPEM(privateKey.Public())
if err != nil {
2022-09-12 17:46:59 +02:00
handleError(errors.WithStack(err))
2019-02-22 17:35:49 +01:00
}
fmt.Print(string(publicPEM))
}