@irfanshadikrishad/cipher 1.5.1 → 1.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -6
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.
|
|
4
4
|
|
|
5
5
|

|
|
6
|
-

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
#### 🚀 Installation
|
|
10
10
|
|
|
@@ -26,7 +26,7 @@ bun:
|
|
|
26
26
|
bun add @irfanshadikrishad/cipher
|
|
27
27
|
```
|
|
28
28
|
|
|
29
|
-
####
|
|
29
|
+
#### Usage
|
|
30
30
|
|
|
31
31
|
Import the library and use a cipher algorithm:
|
|
32
32
|
|
|
@@ -39,7 +39,7 @@ const caesar = new Cipher.Caesar(6)
|
|
|
39
39
|
console.log(caesar.encrypt('hello world')) // Output: "nkrru cuxrj"
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
####
|
|
42
|
+
#### Supported Ciphers
|
|
43
43
|
|
|
44
44
|
This library provides implementations of various classical and modern ciphers:
|
|
45
45
|
|
|
@@ -60,11 +60,11 @@ This library provides implementations of various classical and modern ciphers:
|
|
|
60
60
|
|
|
61
61
|
More ciphers coming soon...
|
|
62
62
|
|
|
63
|
-
####
|
|
63
|
+
#### Contribution
|
|
64
64
|
|
|
65
65
|
To contribute on the codebase, follow [contribution guideline](/docs/en/CONTRIBUTING.md).
|
|
66
66
|
|
|
67
|
-
####
|
|
67
|
+
#### Support
|
|
68
68
|
|
|
69
69
|
If you find this library useful, consider giving it a ⭐ on GitHub!
|
|
70
70
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@irfanshadikrishad/cipher",
|
|
3
3
|
"description": "A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.",
|
|
4
|
-
"version": "1.5.
|
|
4
|
+
"version": "1.5.4",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Irfan Shadik Rishad"
|
|
7
7
|
},
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
],
|
|
46
46
|
"prettier": "@irfanshadikrishad/prettier",
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@eslint/js": "^
|
|
49
|
-
"@irfanshadikrishad/prettier": "^1.3.
|
|
48
|
+
"@eslint/js": "^10.0.1",
|
|
49
|
+
"@irfanshadikrishad/prettier": "^1.3.4",
|
|
50
50
|
"@types/jest": "^30.0.0",
|
|
51
|
-
"@types/node": "^25.0
|
|
52
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
53
|
-
"@typescript-eslint/parser": "^8.
|
|
54
|
-
"eslint": "^
|
|
55
|
-
"globals": "^17.
|
|
51
|
+
"@types/node": "^25.5.0",
|
|
52
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
53
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
54
|
+
"eslint": "^10.1.0",
|
|
55
|
+
"globals": "^17.4.0",
|
|
56
56
|
"husky": "^9.1.7",
|
|
57
|
-
"jest": "^30.
|
|
57
|
+
"jest": "^30.3.0",
|
|
58
58
|
"prettier": "^3.8.1",
|
|
59
59
|
"ts-jest": "^29.4.6",
|
|
60
60
|
"typescript": "^5.9.3",
|
|
61
|
-
"typescript-eslint": "^8.
|
|
61
|
+
"typescript-eslint": "^8.57.1"
|
|
62
62
|
},
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|