changes to armor encoding

master
Matthew 2021-07-02 23:47:09 -04:00
parent 5dc9b586b5
commit aff99a8124
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 0 additions and 4 deletions

View File

@ -4,7 +4,6 @@ import (
"encoding/hex" "encoding/hex"
"net/http" "net/http"
"time" "time"
"io/ioutil"
"golang.org/x/crypto/openpgp" "golang.org/x/crypto/openpgp"
"golang.org/x/crypto/openpgp/armor" "golang.org/x/crypto/openpgp/armor"
@ -23,8 +22,6 @@ type PGPKey struct {
func GetOpenPGPInformationEncoded(c *gin.Context) { func GetOpenPGPInformationEncoded(c *gin.Context) {
query := c.Copy().Request.Body query := c.Copy().Request.Body
query2 := c.Copy().Request.Body
body, _ := ioutil.ReadAll(query2)
block, err := armor.Decode(query) block, err := armor.Decode(query)
if err != nil { if err != nil {
@ -74,6 +71,5 @@ func GetOpenPGPInformationEncoded(c *gin.Context) {
"publicKeyAlgorithm": key.PublicKeyAlgorithm, "publicKeyAlgorithm": key.PublicKeyAlgorithm,
"fingerprint": hex.EncodeToString(key.Fingerprint[:]), "fingerprint": hex.EncodeToString(key.Fingerprint[:]),
"keyID": key.KeyID, "keyID": key.KeyID,
"armor": body,
}) })
} }