diff options
author | Mario Vavti <mario@mariovavti.com> | 2020-08-22 22:14:29 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2020-08-22 22:14:29 +0200 |
commit | 4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be (patch) | |
tree | eb8d2ffd4840b2cfa50499ac522c3cd276eb8b04 /library/cryptojs/components/pad-iso10126.js | |
parent | 3b865d432ff24532b4a5e6917e23fc42b0d7fcaf (diff) | |
download | volse-hubzilla-4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be.tar.gz volse-hubzilla-4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be.tar.bz2 volse-hubzilla-4e0fc81e5dfaad3c3ed47a02df4589f5b25a88be.zip |
move cryptojs to addon
Diffstat (limited to 'library/cryptojs/components/pad-iso10126.js')
-rw-r--r-- | library/cryptojs/components/pad-iso10126.js | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/library/cryptojs/components/pad-iso10126.js b/library/cryptojs/components/pad-iso10126.js deleted file mode 100644 index ce7e1bbcb..000000000 --- a/library/cryptojs/components/pad-iso10126.js +++ /dev/null @@ -1,30 +0,0 @@ -/* -CryptoJS v3.1.2 -code.google.com/p/crypto-js -(c) 2009-2013 by Jeff Mott. All rights reserved. -code.google.com/p/crypto-js/wiki/License -*/ -/**
- * ISO 10126 padding strategy.
- */
-CryptoJS.pad.Iso10126 = {
- pad: function (data, blockSize) {
- // Shortcut
- var blockSizeBytes = blockSize * 4;
-
- // Count padding bytes
- var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes;
-
- // Pad
- data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes - 1)).
- concat(CryptoJS.lib.WordArray.create([nPaddingBytes << 24], 1));
- },
-
- unpad: function (data) {
- // Get number of padding bytes from last byte
- var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff;
-
- // Remove padding
- data.sigBytes -= nPaddingBytes;
- }
-};
|