Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 669010d

Browse files
committedJun 11, 2013
Added access to RSAKey.parse from outside of module (ver 1.0.2)
1 parent d808a52 commit 669010d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed
 

‎lib/cryptico.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2988,4 +2988,6 @@ var aes = (function () {
29882988

29892989
return my;
29902990

2991-
}());
2991+
}());
2992+
2993+
module.exports.RSAKey = RSAKey;

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cryptico",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"author": "Rye Terrell <ryeterrell@ryeterrell.net>",
55
"contributors": [
66
{

‎src/api.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,6 @@ var cryptico = module.exports = (function() {
350350

351351
return my;
352352

353-
}());
353+
}());
354+
355+
module.exports.RSAKey = RSAKey;

0 commit comments

Comments
 (0)
Please sign in to comment.