Skip to content

Commit

Permalink
Version 0.0.12.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Scott committed Apr 23, 2019
1 parent 7ef3ce8 commit 38ad1ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ravelinjs",
"version": "0.0.11",
"version": "0.0.12",
"description": "Ravelin Client-side Card Encryption Library.",
"main": "ravelin.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion ravelin.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}
}(typeof self !== 'undefined' ? self : this, function () {

var version = '0.0.11';
var version = '0.0.12';

var RSAKey = (function(){
// prng4.js - uses Arcfour as a PRNG
Expand Down
2 changes: 1 addition & 1 deletion test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ function validateCipher(c) {
c.cardCiphertext != '' && c.cardCiphertext.length > 10 &&
c.aesKeyCiphertext != '' && c.aesKeyCiphertext.length > 10 &&
c.algorithm == 'RSA_WITH_AES_256_GCM' &&
c.ravelinSDKVersion == '0.0.11-ravelinjs' &&
c.ravelinSDKVersion == '0.0.12-ravelinjs' &&
typeof(c.keyIndex) === 'number';
}

0 comments on commit 38ad1ac

Please sign in to comment.