diff --git a/docs/AEADEncryptedDataPacket.html b/docs/AEADEncryptedDataPacket.html index 58dd788f..3bc86f13 100644 --- a/docs/AEADEncryptedDataPacket.html +++ b/docs/AEADEncryptedDataPacket.html @@ -98,7 +98,7 @@ AEAD Protected Data Packet
The session key's cipher algorithm e.g. 'aes128'
The session key's cipher algorithm
Encrypt the packet list payload.
+Encrypt the packet payload.
The session key's cipher algorithm e.g. 'aes128'
The session key's cipher algorithm
on parsing failure
+Infinity
if the key doesn't expire, or null
if
Infinity
if the key doesn't expire, or null
if
Infinity
if the key doesn't expire, or null
if
Infinity
if the key doesn't expire, or null
if
Any native javascript string
The format of the string of bytes
algorithm
algorithmName
aeadAlgorithm
aeadAlgorithmName
read
on an empty PacketList instance.
read
on an empty PacketList instance.
read
on an empty PacketList instance.
read
on an empty PacketList instance.
read
on an empty PacketList instance.
Algorithm to encrypt the message with
+Decrypts the session key (only for public key encrypted session key -packets (tag 1)
+Decrypts the session key (only for public key encrypted session key packets (tag 1)
randomSessionKey
Bogus session key to use in case of sensitive decryption error, or if the decrypted session key is of a different type/size. +This is needed for constant-time processing. Expected object of the form: { sessionKey: Uint8Array, sessionKeyAlgorithm: enums.symmetric }
if decryption failed
+if decryption failed, unless randomSessionKey
is given
AEAD algorithm
+AEAD algorithm to encrypt the key with (if AEAD protection is enabled)
Symmetric algorithm
+Symmetric algorithm to encrypt the key with
AEAD algorithm
+AEAD algorithm to encrypt the key with (if AEAD protection is enabled)
Symmetric algorithm
+Symmetric algorithm to encrypt the key with
The selected symmetric encryption algorithm to be used e.g. 'aes128'
The selected symmetric encryption algorithm to be used
on decryption failure
+The selected symmetric encryption algorithm to be used e.g. 'aes128'
The symmetric encryption algorithm to use
on encryption failure
+AEAD mode to encrypt the session key with (if AEAD protection is enabled)
+Algorithm to encrypt the message with
+Algorithm to encrypt the session key with
+Decrypts the session key
+Decrypts the session key with the given passphrase
Encrypts the session key
+Encrypts the session key with the given passphrase
Javascript AES implementation. +This is used as fallback if the native Crypto APIs are not available.
+decryptionKeys
, sessionkeys
or passwords<
Source:
-
- openpgp.js, line 333
+ openpgp.js, line 333
@@ -1996,7 +2087,7 @@ This method does not change the original key.
Source:
-
- openpgp.js, line 172
+ openpgp.js, line 172
@@ -2355,7 +2446,7 @@ One of decryptionKeys
or passwords
must be specified.<
Source:
-
- openpgp.js, line 581
+ openpgp.js, line 581
@@ -3117,7 +3208,7 @@ must be specified. If signing keys are specified, those will be used to sign the
Source:
-
- openpgp.js, line 264
+ openpgp.js, line 264
@@ -3405,7 +3496,7 @@ This method does not change the original key.
Source:
-
- openpgp.js, line 206
+ openpgp.js, line 206
@@ -4025,7 +4116,7 @@ At least one of encryptionKeys
or passwords
must be sp
Source:
-
- openpgp.js, line 551
+ openpgp.js, line 551
@@ -4241,7 +4332,7 @@ At least one of encryptionKeys
or passwords
must be sp
Source:
-
- openpgp.js, line 713
+ openpgp.js, line 713
@@ -4834,7 +4925,7 @@ default to main key options, except for sign
parameter that default
Source:
-
- openpgp.js, line 56
+ openpgp.js, line 56
@@ -5182,7 +5273,7 @@ default to main key options, except for sign
parameter that default
Source:
-
- openpgp.js, line 518
+ openpgp.js, line 518
@@ -5366,7 +5457,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -5651,7 +5742,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -5939,7 +6030,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -6227,7 +6318,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -6521,7 +6612,7 @@ default to main key options, except for sign
parameter that default
Source:
-
- message.js, line 805
+ message.js, line 853
@@ -6809,7 +6900,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -7097,7 +7188,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -7385,7 +7476,7 @@ default to main key options, except for sign
parameter that default
Source:
@@ -7847,7 +7938,7 @@ to set the same date as the key creation time to ensure that old message signatu
Source:
-
- openpgp.js, line 100
+ openpgp.js, line 100
@@ -8376,7 +8467,7 @@ If a revocation certificate is passed, the reasonForRevocation parameter will be
Source:
-
- openpgp.js, line 141
+ openpgp.js, line 141
@@ -8889,7 +8980,7 @@ If a revocation certificate is passed, the reasonForRevocation parameter will be
Source:
-
- openpgp.js, line 395
+ openpgp.js, line 395
@@ -9051,7 +9142,7 @@ the encoded bytes
Source:
@@ -9513,7 +9604,7 @@ an attribute "data" containing a stream of bytes and "type"
Source:
-
- openpgp.js, line 464
+ openpgp.js, line 464
@@ -9757,7 +9848,7 @@ The new key includes a revocation certificate that must be removed before return
Source:
@@ -9821,7 +9912,7 @@ The new key includes a revocation certificate that must be removed before return
diff --git a/docs/index.html b/docs/index.html
index 4938bd4d..f228e3ce 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -54,6 +54,7 @@
Getting started
@@ -228,6 +229,10 @@ openpgp.config.preferredAEADAlgorithm = openpgp.enums.aead.experimentalGCM // **
Or as an ES6 module, from an .mjs file:
import * as openpgp from 'openpgp';
+Deno (experimental)
+Import as an ES6 module, using /dist/openpgp.mjs.
+import * as openpgp from './openpgpjs/dist/openpgp.mjs';
+
Browser (webpack)
Install OpenPGP.js using npm and save it in your devDependencies:
npm install --save-dev openpgp
@@ -257,7 +262,7 @@ import * as openpgp from './openpgp.min.mjs';
To offload cryptographic operations off the main thread, you can implement a Web Worker in your application and load OpenPGP.js from there. For an example Worker implementation, see test/worker/worker_example.js
.
Examples
-Here are some examples of how to use OpenPGP.js v5. For more elaborate examples and working code, please check out the public API unit tests. If you're upgrading from v4 it might help to check out the changelog and documentation.
+Here are some examples of how to use OpenPGP.js v5. For more elaborate examples and working code, please check out the public API unit tests. If you're upgrading from v4 it might help to check out the changelog and documentation.
Encrypt and decrypt Uint8Array data with a password
Encryption will use the algorithm specified in config.preferredSymmetricAlgorithm (defaults to aes256), and decryption will use the algorithm used for encryption.
(async () => {
@@ -671,7 +676,7 @@ and a subkey for encryption using Curve25519.
})();
Documentation
-The full documentation is available at openpgpjs.org.
+The full documentation is available at openpgpjs.org.
Security Audit
To date the OpenPGP.js code base has undergone two complete security audits from Cure53. The first audit's report has been published here.
Security recommendations
@@ -698,7 +703,7 @@ and a subkey for encryption using Curve25519.
diff --git a/docs/module-config.html b/docs/module-config.html
index 439ec253..1c669330 100644
--- a/docs/module-config.html
+++ b/docs/module-config.html
@@ -89,7 +89,7 @@
Source:
@@ -247,7 +247,7 @@ Must be an integer value from 0 to 56.
Source:
@@ -365,7 +365,7 @@ Note: not all OpenPGP implementations are compatible with this option.
Source:
@@ -490,7 +490,7 @@ where key flags were ignored when selecting a key for encryption.
Source:
@@ -609,7 +609,7 @@ and have self-signature's creation date that does not match the primary key crea
Source:
@@ -730,7 +730,7 @@ This is an insecure setting:
Source:
@@ -847,7 +847,7 @@ This setting is insecure if the partially decrypted message is
Source:
@@ -959,7 +959,7 @@ This setting is insecure if the partially decrypted message is
Source:
@@ -1071,7 +1071,247 @@ This setting is insecure if the partially decrypted message is
Source:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+(static) constantTimePKCS1Decryption
+
+
+
+
+
+ Enable constant-time decryption of RSA- and ElGamal-encrypted session keys, to hinder Bleichenbacher-like attacks (https://link.springer.com/chapter/10.1007/BFb0055716).
+This setting has measurable performance impact and it is only helpful in application scenarios where both of the following conditions apply:
+
+- new/incoming messages are automatically decrypted (without user interaction);
+- an attacker can determine how long it takes to decrypt each message (e.g. due to decryption errors being logged remotely).
+See also
constantTimePKCS1DecryptionSupportedSymmetricAlgorithms
.
+
+
+
+
+
+
+
+
+
+ Properties:
+
+
+
+
+
+
+
+ Name
+
+
+ Type
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ constantTimePKCS1Decryption
+
+
+
+
+
+Boolean
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ - Source:
+ -
+ config/config.js, line 152
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+(static) constantTimePKCS1DecryptionSupportedSymmetricAlgorithms
+
+
+
+
+
+ This setting is only meaningful if constantTimePKCS1Decryption
is enabled.
+Decryption of RSA- and ElGamal-encrypted session keys of symmetric algorithms different from the ones specified here will fail.
+However, the more algorithms are added, the slower the decryption procedure becomes.
+
+
+
+
+
+
+
+
+ Properties:
+
+
+
+
+
+
+
+ Name
+
+
+ Type
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ constantTimePKCS1DecryptionSupportedSymmetricAlgorithms
+
+
+
+
+
+Set.<Integer>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ - Source:
+
@@ -1183,7 +1423,7 @@ This setting is insecure if the partially decrypted message is
- Source:
@@ -1295,7 +1535,7 @@ This setting is insecure if the partially decrypted message is
- Source:
@@ -1407,7 +1647,7 @@ This setting is insecure if the partially decrypted message is
- Source:
@@ -1524,7 +1764,7 @@ validation error when the notation is marked as critical.
- Source:
@@ -1640,7 +1880,7 @@ validation error when the notation is marked as critical.
- Source:
@@ -1752,7 +1992,7 @@ validation error when the notation is marked as critical.
- Source:
@@ -1869,7 +2109,7 @@ The default is 2047 since due to a bug, previous versions of OpenPGP.js could ge
- Source:
@@ -1986,7 +2226,7 @@ The default is 2047 since due to a bug, previous versions of OpenPGP.js could ge
- Source:
@@ -2103,7 +2343,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2215,7 +2455,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2327,7 +2567,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2439,7 +2679,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2555,7 +2795,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2671,7 +2911,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2787,7 +3027,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -2903,7 +3143,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -3015,7 +3255,7 @@ Only has an effect when aeadProtect is set to true.
- Source:
@@ -3132,7 +3372,7 @@ Iteration Count Byte for S2K (String to Key)
- Source:
@@ -3244,7 +3484,7 @@ Iteration Count Byte for S2K (String to Key)
- Source:
@@ -3356,7 +3596,7 @@ Iteration Count Byte for S2K (String to Key)
- Source:
@@ -3474,7 +3714,7 @@ Note: the indutny/elliptic curve library is not designed to be constant time.Source:
@@ -3592,7 +3832,7 @@ Note: not all OpenPGP implementations are compatible with this option.
- Source:
@@ -3704,7 +3944,7 @@ Note: not all OpenPGP implementations are compatible with this option.
- Source:
@@ -3738,7 +3978,7 @@ Note: not all OpenPGP implementations are compatible with this option.
diff --git a/docs/module-crypto_random-RandomBuffer.html b/docs/module-crypto_random-RandomBuffer.html
index 9073aade..6f58ca88 100644
--- a/docs/module-crypto_random-RandomBuffer.html
+++ b/docs/module-crypto_random-RandomBuffer.html
@@ -95,7 +95,7 @@
- Source:
@@ -254,7 +254,7 @@
- Source:
@@ -393,7 +393,7 @@
- Source:
@@ -532,7 +532,7 @@
- Source:
@@ -578,7 +578,7 @@
diff --git a/docs/module-enums.html b/docs/module-enums.html
index 22a1f3d5..995f2093 100644
--- a/docs/module-enums.html
+++ b/docs/module-enums.html
@@ -212,7 +212,7 @@
- Source:
@@ -476,7 +476,7 @@
- Source:
@@ -671,7 +671,7 @@
- Source:
@@ -1878,7 +1878,7 @@
- Source:
@@ -2059,7 +2059,7 @@ fingerprint format
- Source:
@@ -2323,7 +2323,7 @@ fingerprint format
- Source:
@@ -2589,7 +2589,7 @@ possession of more than one person.
- Source:
@@ -2784,7 +2784,7 @@ possession of more than one person.
- Source:
@@ -3301,7 +3301,7 @@ possession of more than one person.
- Source:
@@ -3635,7 +3635,7 @@ possession of more than one person.
- Source:
@@ -3853,7 +3853,7 @@ possession of more than one person.
- Source:
@@ -4048,7 +4048,7 @@ possession of more than one person.
- Source:
@@ -4565,7 +4565,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5266,7 +5266,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5576,7 +5576,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5772,7 +5772,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5800,7 +5800,7 @@ document) that cannot include a target subpacket.
- (static) read()
+ (static) read(type, e) → {String}
@@ -5808,7 +5808,7 @@ document) that cannot include a target subpacket.
- Converts from an integer to string.
+ Converts enum integer value to the corresponding string, if it exists.
@@ -5819,6 +5819,78 @@ document) that cannot include a target subpacket.
+ Parameters:
+
+
+
+
+
+
+ Name
+
+
+ Type
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type
+
+
+
+
+
+Object
+
+
+
+
+
+
+
+
+
+ target enum type
+
+
+
+
+
+
+ e
+
+
+
+
+
+Integer
+
+
+
+
+
+
+
+
+
+ value to convert
+
+
+
+
+
+
+
@@ -5854,7 +5926,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5877,8 +5949,59 @@ document) that cannot include a target subpacket.
+Throws:
+
+
+
+
+ -
+
+
if the value is invalid
+
+
+
+ -
+
+ -
+ Type
+
+ -
+
+Error
+
+
+
+
+
+
+
+
+
+
+Returns:
+
+
+
+ name of enum value if it exists
+
+
+
+
+
+ -
+ Type
+
+ -
+
+String
+
+
+
+
+
+
@@ -5890,7 +6013,7 @@ document) that cannot include a target subpacket.
- (static) write()
+ (static) write(type, e) → {Integer}
@@ -5898,7 +6021,7 @@ document) that cannot include a target subpacket.
- Asserts validity and converts from string/integer to integer.
+ Asserts validity of given value and converts from string/integer to integer.
@@ -5909,6 +6032,81 @@ document) that cannot include a target subpacket.
+ Parameters:
+
+
+
+
+
+
+ Name
+
+
+ Type
+
+
+
+
+
+ Description
+
+
+
+
+
+
+
+
+ type
+
+
+
+
+
+Object
+
+
+
+
+
+
+
+
+
+ target enum type
+
+
+
+
+
+
+ e
+
+
+
+
+
+String
+|
+
+Integer
+
+
+
+
+
+
+
+
+
+ value to check and/or convert
+
+
+
+
+
+
+
@@ -5944,7 +6142,7 @@ document) that cannot include a target subpacket.
- Source:
@@ -5967,8 +6165,59 @@ document) that cannot include a target subpacket.
+Throws:
+
+
+
+
+ -
+
+
if the value is invalid
+
+
+
+ -
+
+ -
+ Type
+
+ -
+
+Error
+
+
+
+
+
+
+
+
+
+
+Returns:
+
+
+
+ enum value if it exists
+
+
+
+
+
+ -
+ Type
+
+ -
+
+Integer
+
+
+
+
+
+
@@ -5990,7 +6239,7 @@ document) that cannot include a target subpacket.
diff --git a/docs/module-key_Subkey-Subkey.html b/docs/module-key_Subkey-Subkey.html
index 9006a042..e14718e9 100644
--- a/docs/module-key_Subkey-Subkey.html
+++ b/docs/module-key_Subkey-Subkey.html
@@ -170,7 +170,7 @@
- Source:
@@ -280,7 +280,7 @@
- Source:
@@ -393,7 +393,7 @@
- Source:
@@ -510,7 +510,7 @@
- Source:
@@ -627,7 +627,7 @@
- Source:
@@ -740,7 +740,7 @@
- Source:
@@ -941,7 +941,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1054,7 +1054,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1171,7 +1171,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1288,7 +1288,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1405,7 +1405,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1522,7 +1522,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1639,7 +1639,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1756,7 +1756,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -1872,7 +1872,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -2148,7 +2148,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -2486,7 +2486,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -2598,7 +2598,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -2831,7 +2831,7 @@ Returns null if the subkey is invalid.
- Source:
@@ -3043,7 +3043,7 @@ and valid binding signature.
- Source:
@@ -3136,7 +3136,7 @@ and valid binding signature.
diff --git a/docs/module-key_User-User.html b/docs/module-key_User-User.html
index ea5affd9..940fa81e 100644
--- a/docs/module-key_User-User.html
+++ b/docs/module-key_User-User.html
@@ -170,7 +170,7 @@
- Source:
-
- key/user.js, line 17
+ key/user.js, line 17
@@ -403,7 +403,7 @@
- Source:
-
- key/user.js, line 59
+ key/user.js, line 59
@@ -515,7 +515,7 @@
- Source:
-
- key/user.js, line 43
+ key/user.js, line 43
@@ -788,7 +788,7 @@
- Source:
-
- key/user.js, line 97
+ key/user.js, line 97
@@ -900,7 +900,7 @@
- Source:
-
- key/user.js, line 30
+ key/user.js, line 30
@@ -1103,7 +1103,7 @@
- Source:
@@ -1284,7 +1284,7 @@ and validity of self signature.
- Source:
@@ -1548,7 +1548,7 @@ and validity of self signature.
- Source:
@@ -1815,7 +1815,7 @@ Signature validity is null if the verification keys do not correspond to the cer
- Source:
@@ -1895,7 +1895,7 @@ Signature validity is null if the verification keys do not correspond to the cer
diff --git a/docs/module-type_kdf_params-KDFParams.html b/docs/module-type_kdf_params-KDFParams.html
index 3c6391df..ee131114 100644
--- a/docs/module-type_kdf_params-KDFParams.html
+++ b/docs/module-type_kdf_params-KDFParams.html
@@ -163,7 +163,7 @@
- Source:
@@ -322,7 +322,7 @@
- Source:
@@ -434,7 +434,7 @@
- Source:
@@ -502,7 +502,7 @@
diff --git a/docs/module-type_keyid-KeyID.html b/docs/module-type_keyid-KeyID.html
index fcb47aa1..2de4bf7c 100644
--- a/docs/module-type_keyid-KeyID.html
+++ b/docs/module-type_keyid-KeyID.html
@@ -100,7 +100,7 @@ formed.
- Source:
@@ -294,7 +294,7 @@ formed.
- Source:
@@ -384,7 +384,7 @@ formed.
- Source:
@@ -496,7 +496,7 @@ formed.
- Source:
@@ -657,7 +657,7 @@ formed.
- Source:
@@ -747,7 +747,7 @@ formed.
- Source:
@@ -859,7 +859,7 @@ formed.
- Source:
@@ -927,7 +927,7 @@ formed.
diff --git a/docs/module-type_s2k-S2K.html b/docs/module-type_s2k-S2K.html
index e5729cd8..22466ee4 100644
--- a/docs/module-type_s2k-S2K.html
+++ b/docs/module-type_s2k-S2K.html
@@ -152,7 +152,7 @@
- Source:
-
- type/s2k.js, line 40
+ type/s2k.js, line 40
@@ -202,11 +202,15 @@
-algorithm :module:enums.hash
+algorithm :module:enums.hash|0
+
+ Hash function identifier, or 0 for gnu-dummy keys
+
+
Type:
@@ -214,6 +218,9 @@
module:enums.hash
+|
+
+0
@@ -254,7 +261,7 @@
Source:
-
- type/s2k.js, line 42
+ type/s2k.js, line 45
@@ -324,7 +331,7 @@
Source:
-
- type/s2k.js, line 46
+ type/s2k.js, line 52
@@ -342,7 +349,7 @@
-salt :String
+salt :Uint8Array
@@ -353,6 +360,80 @@
+ Type:
+
+ -
+
+Uint8Array
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ - Source:
+ -
+ type/s2k.js, line 56
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+type :String
+
+
+
+
+
+ enums.s2k identifier or 'gnu-dummy'
+
+
+
+
Type:
-
@@ -398,77 +479,7 @@
- Source:
-
- type/s2k.js, line 50
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-type :module:enums.s2k
-
-
-
-
-
-
- Type:
-
- -
-
-module:enums.s2k
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - Source:
- -
- type/s2k.js, line 44
+ type/s2k.js, line 50
@@ -600,7 +611,7 @@ hashAlgorithm
- Source:
@@ -709,7 +720,7 @@ hashAlgorithm hash length
-String
+Uint8Array
@@ -762,7 +773,7 @@ hashAlgorithm hash length
- Source:
-
- type/s2k.js, line 65
+ type/s2k.js, line 71
@@ -874,7 +885,7 @@ hashAlgorithm hash length
- Source:
@@ -942,7 +953,7 @@ hashAlgorithm hash length
diff --git a/package-lock.json b/package-lock.json
index b23b2a5a..18b7512e 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "openpgp",
- "version": "5.0.1",
+ "version": "5.1.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/package.json b/package.json
index 217aef74..d060864e 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "openpgp",
"description": "OpenPGP.js is a Javascript implementation of the OpenPGP protocol. This is defined in RFC 4880.",
- "version": "5.0.1",
+ "version": "5.1.0",
"license": "LGPL-3.0+",
"homepage": "https://openpgpjs.org/",
"engines": {