View Source Changelog
v0.6.2
Enhancements
- Better error message for:
- Updated Elixir supported version to
~>1.14
v0.6.0
Enhancements
- Introduced
OpenPGP.Encode
protocol with.encode/1,2
and.tag/1
. - Add
OpenPGP.Encode
protocol implementation for: - Introduced
OpenPGP.Encrypt
protocol with.encrypt/1,2
. - Add
OpenPGP.Encrypt
protocol implementation for:OpenPGP.PublicKeyEncryptedSessionKeyPacket
with Elgamal (Public-Key algo 16).OpenPGP.IntegrityProtectedDataPacket
with AES-128, AES-192, AES-256 (Sym.algo 7,8,9).
- Added
OpenPGP.encode_packet/1
that delegate toOpenPGP.Encode
protocol. - Added
OpenPGP.encrypt_packet/1,2
that delegate toOpenPGP.Encrypt
protocol. - Add ElGamal algorithm support to
OpenPGP.PublicKeyPacket.decode/1
. - Introduced
OpenPGP.ModificationDetectionCodePacket
. - Introduced
OpenPGP.Util.PKCS1
with PKCS#1 block encoding EME-PKCS1-v1_5. - Refactored
OpenPGP.Util.encode_mpi/1
and added exception for too long big-endian numbers (>65535 octets).