Improve changelog descriptions (#56)

This commit is contained in:
wussler 2020-07-02 11:22:36 +02:00 committed by GitHub
parent 8d42a53775
commit a232124b70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,12 +16,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
(msg *PGPMessage) GetArmoredWithCustomHeaders(comment, version string) (string, error) (msg *PGPMessage) GetArmoredWithCustomHeaders(comment, version string) (string, error)
``` ```
- Now one could get key IDs of keys to which the session key is encrypted - Extraction of encryption key IDs from a PGP message, i.e. the IDs of the keys used in the encryption of the session key
```go ```go
func (msg *PGPMessage) getEncryptionKeyIDs() ([]uint64, bool) (msg *PGPMessage) getEncryptionKeyIDs() ([]uint64, bool)
``` ```
get x/crypto Entity (components of an OpenPGP key) from Key struct - Getter for the x/crypto Entity (internal components of an OpenPGP key) from Key struct
```go ```go
(key *Key) GetEntity() *openpgp.Entity (key *Key) GetEntity() *openpgp.Entity
``` ```