This commit is contained in:
friendica
2013-11-07 23:25:13 -08:00
parent 90ab0d963b
commit 3a9cbcaf01
89 changed files with 6923 additions and 0 deletions

View 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 () {
}
};