Revert to generating v4 keys by default (#1189)
This commit is contained in:
parent
2ee36c2984
commit
801430f969
|
@ -69,11 +69,12 @@ export default {
|
|||
aeadChunkSizeByte: 12,
|
||||
/**
|
||||
* Use V5 keys.
|
||||
* Note: not all OpenPGP implementations are compatible with this option
|
||||
* Note: not all OpenPGP implementations are compatible with this option.
|
||||
* **FUTURE OPENPGP.JS VERSIONS MAY BREAK COMPATIBILITY WHEN USING THIS OPTION**
|
||||
* @memberof module:config
|
||||
* @property {Boolean} v5Keys
|
||||
*/
|
||||
v5Keys: true,
|
||||
v5Keys: false,
|
||||
/**
|
||||
* {@link https://tools.ietf.org/html/rfc4880#section-3.7.1.3|RFC4880 3.7.1.3}:
|
||||
* Iteration Count Byte for S2K (String to Key)
|
||||
|
|
|
@ -124,7 +124,7 @@ module.exports = () => describe('ECDH key exchange @lightweight', function () {
|
|||
const fingerprint1 = new Uint8Array([
|
||||
177, 183,
|
||||
116, 123, 76, 133, 245, 212, 151, 243, 236,
|
||||
71, 245, 86, 3, 168, 101, 74, 209, 105
|
||||
71, 245, 86, 3, 168, 101, 56, 209, 105
|
||||
]);
|
||||
const fingerprint2 = new Uint8Array([
|
||||
177, 83,
|
||||
|
|
Loading…
Reference in New Issue
Block a user