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 Dec 12, 2024
1 parent d3fe807 commit 27e84f1
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ 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)
```

## [3.1.0] 2024-11-25
### Added
- Add decryption option to allow disabling the integrity tag requirement.
Expand Down
12 changes: 12 additions & 0 deletions crypto/keyring.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import (

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

Expand Down Expand Up @@ -133,6 +135,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 @@ -2,6 +2,7 @@ package crypto

import (
"crypto/rsa"
"regexp"
"testing"

"github.com/stretchr/testify/assert"
Expand Down Expand Up @@ -160,6 +161,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 27e84f1

Please sign in to comment.