Skip to content

Commit

Permalink
Implement KeyRing.Armor()
Browse files Browse the repository at this point in the history
This allows for ASCII encoding of keyrings the same way as already
implemented for individual keys.

Signed-off-by: Georg Pfuetzenreuter <[email protected]>
  • Loading branch information
tacerus committed Jun 3, 2024
1 parent 2a07a34 commit 60b2555
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased

### Added
- API to ASCII encode (armor) KeyRings:
```go
func (keyRing *KeyRing) Armor() (string, error)
```

## [2.8.0-alpha.1] 2024-04-09

### Added
Expand Down
12 changes: 12 additions & 0 deletions crypto/keyring.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import (

"github.com/ProtonMail/go-crypto/openpgp"
"github.com/ProtonMail/go-crypto/openpgp/packet"
"github.com/ProtonMail/gopenpgp/v2/armor"
"github.com/ProtonMail/gopenpgp/v2/constants"
"github.com/pkg/errors"
)

Expand Down Expand Up @@ -130,6 +132,16 @@ func (keyRing *KeyRing) Serialize() ([]byte, error) {
return buffer.Bytes(), nil
}

// Armor returns the armored keyring as a string with default gopenpgp headers.
func (keyRing *KeyRing) Armor() (string, error) {
serialized, err := keyRing.Serialize()
if err != nil {
return "", err
}

return armor.ArmorWithType(serialized, constants.PublicKeyHeader)
}

// --- Extract info from key

// CountEntities returns the number of entities in the keyring.
Expand Down
9 changes: 9 additions & 0 deletions crypto/keyring_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package crypto
import (
"crypto/rsa"
"errors"
"regexp"
"testing"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -163,6 +164,14 @@ func TestSerializeParse(t *testing.T) {
}
}

func TestArmor(t *testing.T) {
armoredRing, err := keyRingTestMultiple.Armor()
assert.Nil(t, err)

rTest := regexp.MustCompile(`(?s)^-----BEGIN PGP PUBLIC KEY BLOCK-----.*Version: GopenPGP [0-9]+\.[0-9]+\.[0-9]+.*-----END PGP PUBLIC KEY BLOCK-----$`)
assert.Regexp(t, rTest, armoredRing)
}

func TestClearPrivateKey(t *testing.T) {
keyRingCopy, err := keyRingTestMultiple.Copy()
if err != nil {
Expand Down

0 comments on commit 60b2555

Please sign in to comment.