2018-11-21 20:56:12 +03:00
|
|
|
package identity
|
|
|
|
|
2021-01-04 01:59:25 +03:00
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2022-02-15 23:35:49 +03:00
|
|
|
"github.com/ProtonMail/go-crypto/openpgp"
|
|
|
|
"github.com/ProtonMail/go-crypto/openpgp/armor"
|
|
|
|
"github.com/ProtonMail/go-crypto/openpgp/packet"
|
2021-01-04 01:59:25 +03:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
|
|
|
|
"github.com/MichaelMure/git-bug/repository"
|
|
|
|
)
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
var errNoPrivateKey = fmt.Errorf("no private key")
|
|
|
|
|
2018-11-21 20:56:12 +03:00
|
|
|
type Key struct {
|
2021-01-04 01:59:25 +03:00
|
|
|
public *packet.PublicKey
|
|
|
|
private *packet.PrivateKey
|
|
|
|
}
|
|
|
|
|
|
|
|
// GenerateKey generate a keypair (public+private)
|
2021-01-24 21:45:21 +03:00
|
|
|
// The type and configuration of the key is determined by the default value in go's OpenPGP.
|
2021-01-04 01:59:25 +03:00
|
|
|
func GenerateKey() *Key {
|
|
|
|
entity, err := openpgp.NewEntity("", "", "", &packet.Config{
|
|
|
|
// The armored format doesn't include the creation time, which makes the round-trip data not being fully equal.
|
|
|
|
// We don't care about the creation time so we can set it to the zero value.
|
|
|
|
Time: func() time.Time {
|
|
|
|
return time.Time{}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
return &Key{
|
|
|
|
public: entity.PrimaryKey,
|
|
|
|
private: entity.PrivateKey,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// generatePublicKey generate only a public key (only useful for testing)
|
|
|
|
// See GenerateKey for the details.
|
|
|
|
func generatePublicKey() *Key {
|
|
|
|
k := GenerateKey()
|
|
|
|
k.private = nil
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
func (k *Key) Public() *packet.PublicKey {
|
|
|
|
return k.public
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) Private() *packet.PrivateKey {
|
|
|
|
return k.private
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) Validate() error {
|
|
|
|
if k.public == nil {
|
|
|
|
return fmt.Errorf("nil public key")
|
|
|
|
}
|
|
|
|
if !k.public.CanSign() {
|
|
|
|
return fmt.Errorf("public key can't sign")
|
|
|
|
}
|
|
|
|
|
|
|
|
if k.private != nil {
|
|
|
|
if !k.private.CanSign() {
|
|
|
|
return fmt.Errorf("private key can't sign")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) Clone() *Key {
|
|
|
|
clone := &Key{}
|
|
|
|
|
|
|
|
pub := *k.public
|
|
|
|
clone.public = &pub
|
|
|
|
|
|
|
|
if k.private != nil {
|
|
|
|
priv := *k.private
|
|
|
|
clone.private = &priv
|
|
|
|
}
|
|
|
|
|
|
|
|
return clone
|
|
|
|
}
|
|
|
|
|
2021-01-04 01:59:25 +03:00
|
|
|
func (k *Key) MarshalJSON() ([]byte, error) {
|
2021-01-24 21:45:21 +03:00
|
|
|
// Serialize only the public key, in the armored format.
|
2021-01-04 01:59:25 +03:00
|
|
|
var buf bytes.Buffer
|
|
|
|
w, err := armor.Encode(&buf, openpgp.PublicKeyType, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-01-24 21:45:21 +03:00
|
|
|
|
2021-01-04 01:59:25 +03:00
|
|
|
err = k.public.Serialize(w)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
err = w.Close()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return json.Marshal(buf.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) UnmarshalJSON(data []byte) error {
|
2021-01-24 21:45:21 +03:00
|
|
|
// De-serialize only the public key, in the armored format.
|
2021-01-04 01:59:25 +03:00
|
|
|
var armored string
|
|
|
|
err := json.Unmarshal(data, &armored)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
block, err := armor.Decode(strings.NewReader(armored))
|
|
|
|
if err == io.EOF {
|
|
|
|
return fmt.Errorf("no armored data found")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if block.Type != openpgp.PublicKeyType {
|
|
|
|
return fmt.Errorf("invalid key type")
|
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
p, err := packet.Read(block.Body)
|
2021-01-04 01:59:25 +03:00
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to read public key packet")
|
|
|
|
}
|
|
|
|
|
|
|
|
public, ok := p.(*packet.PublicKey)
|
|
|
|
if !ok {
|
|
|
|
return errors.New("got no packet.publicKey")
|
|
|
|
}
|
|
|
|
|
|
|
|
// The armored format doesn't include the creation time, which makes the round-trip data not being fully equal.
|
|
|
|
// We don't care about the creation time so we can set it to the zero value.
|
|
|
|
public.CreationTime = time.Time{}
|
|
|
|
|
|
|
|
k.public = public
|
|
|
|
return nil
|
2018-11-21 20:56:12 +03:00
|
|
|
}
|
2019-01-20 17:41:27 +03:00
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
func (k *Key) loadPrivate(repo repository.RepoKeyring) error {
|
|
|
|
item, err := repo.Keyring().Get(k.public.KeyIdString())
|
|
|
|
if err == repository.ErrKeyringKeyNotFound {
|
|
|
|
return errNoPrivateKey
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
2021-01-24 21:45:21 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
block, err := armor.Decode(bytes.NewReader(item.Data))
|
|
|
|
if err == io.EOF {
|
|
|
|
return fmt.Errorf("no armored data found")
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
2019-01-20 17:41:27 +03:00
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
if block.Type != openpgp.PrivateKeyType {
|
|
|
|
return fmt.Errorf("invalid key type")
|
|
|
|
}
|
2021-01-04 01:59:25 +03:00
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
p, err := packet.Read(block.Body)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "failed to read private key packet")
|
|
|
|
}
|
2021-01-04 01:59:25 +03:00
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
private, ok := p.(*packet.PrivateKey)
|
|
|
|
if !ok {
|
|
|
|
return errors.New("got no packet.privateKey")
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
// The armored format doesn't include the creation time, which makes the round-trip data not being fully equal.
|
|
|
|
// We don't care about the creation time so we can set it to the zero value.
|
|
|
|
private.CreationTime = time.Time{}
|
|
|
|
|
|
|
|
k.private = private
|
|
|
|
return nil
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
// ensurePrivateKey attempt to load the corresponding private key if it is not loaded already.
|
|
|
|
// If no private key is found, returns errNoPrivateKey
|
|
|
|
func (k *Key) ensurePrivateKey(repo repository.RepoKeyring) error {
|
2021-01-04 01:59:25 +03:00
|
|
|
if k.private != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
return k.loadPrivate(repo)
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
|
2021-01-24 21:45:21 +03:00
|
|
|
func (k *Key) storePrivate(repo repository.RepoKeyring) error {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
w, err := armor.Encode(&buf, openpgp.PrivateKeyType, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = k.private.Serialize(w)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = w.Close()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return repo.Keyring().Set(repository.Item{
|
|
|
|
Key: k.public.KeyIdString(),
|
|
|
|
Data: buf.Bytes(),
|
|
|
|
})
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (k *Key) PGPEntity() *openpgp.Entity {
|
2022-02-15 23:35:49 +03:00
|
|
|
uid := packet.NewUserId("", "", "")
|
2021-01-04 01:59:25 +03:00
|
|
|
return &openpgp.Entity{
|
|
|
|
PrimaryKey: k.public,
|
|
|
|
PrivateKey: k.private,
|
2022-02-15 23:35:49 +03:00
|
|
|
Identities: map[string]*openpgp.Identity{
|
|
|
|
uid.Id: {
|
|
|
|
Name: uid.Id,
|
|
|
|
UserId: uid,
|
|
|
|
SelfSignature: &packet.Signature{
|
|
|
|
IsPrimaryId: func() *bool { b := true; return &b }(),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-01-04 01:59:25 +03:00
|
|
|
}
|
|
|
|
}
|