Socket
Socket
Sign inDemoInstall

cryptorjs

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cryptorjs - npm Package Compare versions

Comparing version 1.0.1 to 1.0.2

.travis.yml

2

package.json
{
"name": "cryptorjs",
"version": "1.0.1",
"version": "1.0.2",
"description": "Encrypt and decrypt string using a key",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -1,2 +0,2 @@

# Cryptorjs
# Cryptorjs [![Build Status](https://travis-ci.org/fabioricali/Cryptor.svg?branch=master)](https://travis-ci.org/fabioricali/Cryptor)
Encrypt and decrypt string using a key

@@ -3,0 +3,0 @@

@@ -20,3 +20,3 @@ /**

it('should be error', function (done) {
it('should be error if key missing', function (done) {
try{

@@ -29,2 +29,10 @@ new cryptor()

it('should be error if key is empty', function (done) {
try{
new cryptor('')
}catch (error) {
done();
}
});
});

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc