Comparing version 0.1.0 to 0.1.1
@@ -981,11 +981,2 @@ (function(exports){ | ||
/* var thisFish = twoFish(); | ||
exports.setInitializingVector = thisFish.setInitializingVector; | ||
exports.encrypt = thisFish.encrypt; | ||
exports.decrypt = thisFish.decrypt; | ||
exports.encryptCBCMode = thisFish.encryptCBCMode; | ||
exports.decryptCBCMode = thisFish.decryptCBCMode; | ||
*/ | ||
})(typeof exports === 'undefined' ? this : exports); |
{ | ||
"name": "twofish", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Javascript Twofish (ECB and CBC) implementation.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/wouldgo/twofish", |
'use strict'; | ||
//TODO Wathcer sul server per le modifiche ai files? | ||
module.exports = function(grunt) { | ||
// Project configuration. | ||
var banner = ['/*!', | ||
' * Twofish (ECB and CBC) javascript implementation v<%= pkg.version %>', | ||
' *', | ||
' * Released under the MIT license', | ||
' * www.opensource.org/licenses/MIT', | ||
' *', | ||
' * <%= grunt.template.today("yyyy-mm-dd") %>', | ||
' */\n\n' | ||
].join('\n'); | ||
grunt.initConfig({ | ||
pkg: grunt.file.readJSON('package.json'), | ||
jshint: { | ||
@@ -33,3 +41,4 @@ options: { | ||
options: { | ||
report: 'gzip' | ||
report: 'gzip', | ||
banner: banner | ||
}, | ||
@@ -52,8 +61,5 @@ minifyTarget: { | ||
'jshint', | ||
'jasmine' | ||
]); | ||
grunt.registerTask('min', [ | ||
'jasmine', | ||
'uglify' | ||
]); | ||
}; |
{ | ||
"name": "twofish", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Javascript Twofish implementation.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/wouldgo/twofish", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
94776
15
2022
0