
In the lightweight build, lazily load bn.js only when necessary. Also, use Uint8Arrays instead of strings in PKCS1 padding functions, and check that the leading zero is present when decoding EME-PKCS1 padding.
16 lines
560 B
JavaScript
16 lines
560 B
JavaScript
const openpgp = typeof window !== 'undefined' && window.openpgp ? window.openpgp : require('../..');
|
|
|
|
const expect = require('chai').expect;
|
|
|
|
module.exports = () => describe('PKCS5 padding', function() {
|
|
const pkcs5 = openpgp.crypto.pkcs5;
|
|
it('Add and remove padding', function () {
|
|
const m = new Uint8Array([0,1,2,3,4,5,6,7,8]);
|
|
const padded = pkcs5.encode(m);
|
|
const unpadded = pkcs5.decode(padded);
|
|
expect(padded[padded.length - 1]).to.equal(7);
|
|
expect(padded.length % 8).to.equal(0);
|
|
expect(unpadded).to.deep.equal(m);
|
|
});
|
|
});
|