Skip to content

Releases: ProtonMail/gopenpgp

Pre-release v2.8.0-alpha.0-proton

28 Feb 13:09
ece1be1
Compare
Choose a tag to compare
Pre-release

This release is v2.8.0-alpha.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Pre-Release v2.8.0-alpha.0

28 Feb 13:00
453e819
Compare
Choose a tag to compare
Pre-release

This pre-release adds support for the OpenPGP crypto-refresh in v2 by updating the go-crypto dependency.

Added

  • Updates go-crypto dependency to v1.1.0-alpha.1
  • Adapts the session key logic to handle PKESK/SKESK v6 packets without an algorithm attached
  • Updates the min go version to 1.17 as requires by go-crypto v1.1.0-alpha.1
  • Update the cricl dependency to 1.3.7 matching go-crypto

Not supported crypto-refresh features:

  • intended recipients
  • v6 key generation

Release v2.7.5-proton

07 Feb 07:24
42766fe
Compare
Choose a tag to compare

This release is 2.7.5 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Release v2.7.5

07 Feb 07:22
c6a3058
Compare
Choose a tag to compare

Added

  • API to get signature key IDs for mobile:
     func (msg *PGPMessage) GetHexSignatureKeyIDsJson() []byte
  • API to get encryption key IDs for mobile:
     func (msg *PGPMessage) GetHexEncryptionKeyIDsJson() []byte
  • API to get the number of key packets in a PGP message:
     func (msg *PGPSplitMessage) GetNumberOfKeyPackets() (int, error)
  • API in package helper to encrypt a PGP message to an additional key:
     func EncryptPGPMessageToAdditionalKey(messageToModify *crypto.PGPSplitMessage, keyRing *crypto.KeyRing, additionalKey *crypto.KeyRing) error

Release v3.0.0-alpha.0-proton

18 Jan 15:31
ba8d53f
Compare
Choose a tag to compare
Pre-release

This release is v3.0.0-alpha.0 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Release v3.0.0-alpha.0

18 Jan 15:25
62abce9
Compare
Choose a tag to compare
Pre-release

Added

  • New simplified API that is not backward compatible.
  • Full support for the crypto refresh.
  • Improved interoperability with other OpenPGP libraries.
  • Streaming support for all operations.
  • Introduces profiles for OpenPGP customization.
  • More documentation and examples.

Changed

  • Mobile specific code is moved to the mobile package.
  • Mime specific code is moved to the mime package.
  • Replaces the go-crypto v1 API with the v2 API.

Removed

  • The helper package, use the crypto package with the new API instead.
  • subtle and models package.
  • Time management code for retrieving and setting timestamps.

Release 2.7.4-proton

27 Oct 12:36
Compare
Choose a tag to compare

This release is 2.7.4 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Release v2.7.4

27 Oct 12:31
02a4599
Compare
Choose a tag to compare

Fixed

  • Ensure that (SessionKey).Decrypt functions return an error if no integrity protection is present in the encrypted input. To protect SEIPDv1 encrypted messages, SED packets must not be allowed in decryption.

Release 2.7.3-proton

28 Aug 13:56
Compare
Choose a tag to compare

This release is 2.7.3 with support for symmetric keys and automatic forwarding, both of which are not standardized yet.

Release v2.7.3

28 Aug 13:51
0eace54
Compare
Choose a tag to compare

Added

  • Add helper.QuickCheckDecrypt function to the helper package. The function allows to check with high probability if a session key can decrypt a SEIPDv1 data packet given its 24-byte prefix.