mirror of
https://github.com/gchq/CyberChef
synced 2025-12-22 11:13:38 +00:00
Initial commit
This commit is contained in:
16
src/js/lib/cryptojs/pad-nopadding.js
Executable file
16
src/js/lib/cryptojs/pad-nopadding.js
Executable file
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
/**
|
||||
* A noop padding strategy.
|
||||
*/
|
||||
CryptoJS.pad.NoPadding = {
|
||||
pad: function () {
|
||||
},
|
||||
|
||||
unpad: function () {
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user