react-native-aes-lite 1.0.0

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 ADDED
@@ -0,0 +1,18 @@
1
+
2
+ # react-native-aes-lite
3
+
4
+ ## Install
5
+
6
+ ## npm i react-native-aes-lite
7
+
8
+
9
+ ## Usage
10
+ ```js
11
+ import { AES, generateKey } from "react-native-aes-lite";
12
+
13
+ const aes = new AES();
14
+ const key = generateKey("hex", { length: 16 });
15
+ const encrypted = aes.encrypt("hello", key);
16
+ const decrypted = aes.decrypt(encrypted, key);
17
+
18
+
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "react-native-aes-lite",
3
+ "version": "1.0.0",
4
+ "description": "AES encryption for React Native",
5
+ "main": "src/index.js",
6
+
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "types": "src/index.d.ts",
11
+ "keywords": ["aes", "encryption", "react-native"],
12
+ "author": "Ammachi",
13
+ "license": "MIT",
14
+ "devDependencies": {
15
+ "@types/node": "^25.0.3",
16
+ "typescript": "^5.9.3"
17
+ }
18
+ }
package/src/AES.js ADDED
@@ -0,0 +1,296 @@
1
+ class AES {
2
+ constructor() {
3
+ this.SBOX = [
4
+ 0x63, 0x7c, 0x77, 0x7b, 0xf2, 0x6b, 0x6f, 0xc5, 0x30, 0x01, 0x67, 0x2b,
5
+ 0xfe, 0xd7, 0xab, 0x76, 0xca, 0x82, 0xc9, 0x7d, 0xfa, 0x59, 0x47, 0xf0,
6
+ 0xad, 0xd4, 0xa2, 0xaf, 0x9c, 0xa4, 0x72, 0xc0, 0xb7, 0xfd, 0x93, 0x26,
7
+ 0x36, 0x3f, 0xf7, 0xcc, 0x34, 0xa5, 0xe5, 0xf1, 0x71, 0xd8, 0x31, 0x15,
8
+ 0x04, 0xc7, 0x23, 0xc3, 0x18, 0x96, 0x05, 0x9a, 0x07, 0x12, 0x80, 0xe2,
9
+ 0xeb, 0x27, 0xb2, 0x75, 0x09, 0x83, 0x2c, 0x1a, 0x1b, 0x6e, 0x5a, 0xa0,
10
+ 0x52, 0x3b, 0xd6, 0xb3, 0x29, 0xe3, 0x2f, 0x84, 0x53, 0xd1, 0x00, 0xed,
11
+ 0x20, 0xfc, 0xb1, 0x5b, 0x6a, 0xcb, 0xbe, 0x39, 0x4a, 0x4c, 0x58, 0xcf,
12
+ 0xd0, 0xef, 0xaa, 0xfb, 0x43, 0x4d, 0x33, 0x85, 0x45, 0xf9, 0x02, 0x7f,
13
+ 0x50, 0x3c, 0x9f, 0xa8, 0x51, 0xa3, 0x40, 0x8f, 0x92, 0x9d, 0x38, 0xf5,
14
+ 0xbc, 0xb6, 0xda, 0x21, 0x10, 0xff, 0xf3, 0xd2, 0xcd, 0x0c, 0x13, 0xec,
15
+ 0x5f, 0x97, 0x44, 0x17, 0xc4, 0xa7, 0x7e, 0x3d, 0x64, 0x5d, 0x19, 0x73,
16
+ 0x60, 0x81, 0x4f, 0xdc, 0x22, 0x2a, 0x90, 0x88, 0x46, 0xee, 0xb8, 0x14,
17
+ 0xde, 0x5e, 0x0b, 0xdb, 0xe0, 0x32, 0x3a, 0x0a, 0x49, 0x06, 0x24, 0x5c,
18
+ 0xc2, 0xd3, 0xac, 0x62, 0x91, 0x95, 0xe4, 0x79, 0xe7, 0xc8, 0x37, 0x6d,
19
+ 0x8d, 0xd5, 0x4e, 0xa9, 0x6c, 0x56, 0xf4, 0xea, 0x65, 0x7a, 0xae, 0x08,
20
+ 0xba, 0x78, 0x25, 0x2e, 0x1c, 0xa6, 0xb4, 0xc6, 0xe8, 0xdd, 0x74, 0x1f,
21
+ 0x4b, 0xbd, 0x8b, 0x8a, 0x70, 0x3e, 0xb5, 0x66, 0x48, 0x03, 0xf6, 0x0e,
22
+ 0x61, 0x35, 0x57, 0xb9, 0x86, 0xc1, 0x1d, 0x9e, 0xe1, 0xf8, 0x98, 0x11,
23
+ 0x69, 0xd9, 0x8e, 0x94, 0x9b, 0x1e, 0x87, 0xe9, 0xce, 0x55, 0x28, 0xdf,
24
+ 0x8c, 0xa1, 0x89, 0x0d, 0xbf, 0xe6, 0x42, 0x68, 0x41, 0x99, 0x2d, 0x0f,
25
+ 0xb0, 0x54, 0xbb, 0x16,
26
+ ];
27
+ this.INV_SBOX = new Array(256);
28
+ for (let i = 0; i < 256; i++) this.INV_SBOX[this.SBOX[i]] = i;
29
+ this.RCON = [
30
+ 0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36,
31
+ ];
32
+ }
33
+
34
+ xtime(x) {
35
+ x &= 0xff;
36
+ return ((x << 1) ^ (((x >> 7) & 1) * 0x1b)) & 0xff;
37
+ }
38
+
39
+ parseKey(keyString) {
40
+ if (keyString.length === 32) {
41
+ // Assume hex
42
+ const bytes = [];
43
+ for (let i = 0; i < 32; i += 2) {
44
+ bytes.push(parseInt(keyString.substr(i, 2), 16));
45
+ }
46
+ if (bytes.some(isNaN)) throw new Error("Invalid hex key");
47
+ return bytes;
48
+ } else if (keyString.length === 16) {
49
+ // ASCII
50
+ return keyString.split("").map((c) => c.charCodeAt(0));
51
+ } else {
52
+ throw new Error("Key must be 16 ASCII chars or 32 hex chars");
53
+ }
54
+ }
55
+
56
+ keyExpansion(key) {
57
+ const w = new Array(44); // 4 * (10 + 1)
58
+ for (let i = 0; i < 4; i++) {
59
+ w[i] = [key[4 * i], key[4 * i + 1], key[4 * i + 2], key[4 * i + 3]];
60
+ }
61
+ for (let i = 4; i < 44; i++) {
62
+ let temp = w[i - 1].slice();
63
+ if (i % 4 === 0) {
64
+ // RotWord
65
+ const t = temp[0];
66
+ temp[0] = temp[1];
67
+ temp[1] = temp[2];
68
+ temp[2] = temp[3];
69
+ temp[3] = t;
70
+ // SubWord
71
+ for (let j = 0; j < 4; j++) {
72
+ temp[j] = this.SBOX[temp[j]];
73
+ }
74
+ // Rcon
75
+ temp[0] ^= this.RCON[i / 4];
76
+ }
77
+ w[i] = [
78
+ w[i - 4][0] ^ temp[0],
79
+ w[i - 4][1] ^ temp[1],
80
+ w[i - 4][2] ^ temp[2],
81
+ w[i - 4][3] ^ temp[3],
82
+ ];
83
+ }
84
+ return w;
85
+ }
86
+
87
+ cipher(input, w) {
88
+ let state = [
89
+ [0, 0, 0, 0],
90
+ [0, 0, 0, 0],
91
+ [0, 0, 0, 0],
92
+ [0, 0, 0, 0],
93
+ ];
94
+ for (let r = 0; r < 4; r++)
95
+ for (let c = 0; c < 4; c++) state[r][c] = input[r + 4 * c];
96
+
97
+ state = this.addRoundKey(state, w, 0);
98
+
99
+ for (let round = 1; round < 10; round++) {
100
+ state = this.subBytes(state);
101
+ state = this.shiftRows(state);
102
+ state = this.mixColumns(state);
103
+ state = this.addRoundKey(state, w, round);
104
+ }
105
+
106
+ state = this.subBytes(state);
107
+ state = this.shiftRows(state);
108
+ state = this.addRoundKey(state, w, 10);
109
+
110
+ const output = new Array(16);
111
+ for (let r = 0; r < 4; r++)
112
+ for (let c = 0; c < 4; c++) output[r + 4 * c] = state[r][c];
113
+ return output;
114
+ }
115
+
116
+ invCipher(input, w) {
117
+ let state = [
118
+ [0, 0, 0, 0],
119
+ [0, 0, 0, 0],
120
+ [0, 0, 0, 0],
121
+ [0, 0, 0, 0],
122
+ ];
123
+ for (let r = 0; r < 4; r++)
124
+ for (let c = 0; c < 4; c++) state[r][c] = input[r + 4 * c];
125
+
126
+ state = this.addRoundKey(state, w, 10);
127
+
128
+ for (let round = 9; round >= 1; round--) {
129
+ state = this.invShiftRows(state);
130
+ state = this.invSubBytes(state);
131
+ state = this.addRoundKey(state, w, round);
132
+ state = this.invMixColumns(state);
133
+ }
134
+
135
+ state = this.invShiftRows(state);
136
+ state = this.invSubBytes(state);
137
+ state = this.addRoundKey(state, w, 0);
138
+
139
+ const output = new Array(16);
140
+ for (let r = 0; r < 4; r++)
141
+ for (let c = 0; c < 4; c++) output[r + 4 * c] = state[r][c];
142
+ return output;
143
+ }
144
+
145
+ subBytes(s) {
146
+ for (let r = 0; r < 4; r++)
147
+ for (let c = 0; c < 4; c++) s[r][c] = this.SBOX[s[r][c]];
148
+ return s;
149
+ }
150
+
151
+ invSubBytes(s) {
152
+ for (let r = 0; r < 4; r++)
153
+ for (let c = 0; c < 4; c++) s[r][c] = this.INV_SBOX[s[r][c]];
154
+ return s;
155
+ }
156
+
157
+ shiftRows(s) {
158
+ const t = s.map((r) => [...r]);
159
+ s[1][0] = t[1][1];
160
+ s[1][1] = t[1][2];
161
+ s[1][2] = t[1][3];
162
+ s[1][3] = t[1][0];
163
+ s[2][0] = t[2][2];
164
+ s[2][1] = t[2][3];
165
+ s[2][2] = t[2][0];
166
+ s[2][3] = t[2][1];
167
+ s[3][0] = t[3][3];
168
+ s[3][1] = t[3][0];
169
+ s[3][2] = t[3][1];
170
+ s[3][3] = t[3][2];
171
+ return s;
172
+ }
173
+
174
+ invShiftRows(s) {
175
+ const t = s.map((r) => [...r]);
176
+ s[1][0] = t[1][3];
177
+ s[1][1] = t[1][0];
178
+ s[1][2] = t[1][1];
179
+ s[1][3] = t[1][2];
180
+ s[2][0] = t[2][2];
181
+ s[2][1] = t[2][3];
182
+ s[2][2] = t[2][0];
183
+ s[2][3] = t[2][1];
184
+ s[3][0] = t[3][1];
185
+ s[3][1] = t[3][2];
186
+ s[3][2] = t[3][3];
187
+ s[3][3] = t[3][0];
188
+ return s;
189
+ }
190
+
191
+ mixColumns(s) {
192
+ for (let c = 0; c < 4; c++) {
193
+ const a0 = s[0][c],
194
+ a1 = s[1][c],
195
+ a2 = s[2][c],
196
+ a3 = s[3][c];
197
+ s[0][c] = this.xtime(a0) ^ this.xtime(a1) ^ a1 ^ a2 ^ a3;
198
+ s[1][c] = a0 ^ this.xtime(a1) ^ this.xtime(a2) ^ a2 ^ a3;
199
+ s[2][c] = a0 ^ a1 ^ this.xtime(a2) ^ this.xtime(a3) ^ a3;
200
+ s[3][c] = this.xtime(a0) ^ a0 ^ a1 ^ a2 ^ this.xtime(a3);
201
+ }
202
+ return s;
203
+ }
204
+
205
+ invMixColumns(s) {
206
+ for (let c = 0; c < 4; c++) {
207
+ const a = [s[0][c], s[1][c], s[2][c], s[3][c]];
208
+ const xtime2 = (v) => this.xtime(v);
209
+ const xtime4 = (v) => this.xtime(xtime2(v));
210
+ const xtime8 = (v) => this.xtime(xtime4(v));
211
+ const mul = (v, b) => {
212
+ let res = 0;
213
+ if (b & 1) res ^= v;
214
+ if (b & 2) res ^= xtime2(v);
215
+ if (b & 4) res ^= xtime4(v);
216
+ if (b & 8) res ^= xtime8(v);
217
+ return res & 0xff;
218
+ };
219
+ s[0][c] =
220
+ mul(a[0], 0x0e) ^ mul(a[1], 0x0b) ^ mul(a[2], 0x0d) ^ mul(a[3], 0x09);
221
+ s[1][c] =
222
+ mul(a[0], 0x09) ^ mul(a[1], 0x0e) ^ mul(a[2], 0x0b) ^ mul(a[3], 0x0d);
223
+ s[2][c] =
224
+ mul(a[0], 0x0d) ^ mul(a[1], 0x09) ^ mul(a[2], 0x0e) ^ mul(a[3], 0x0b);
225
+ s[3][c] =
226
+ mul(a[0], 0x0b) ^ mul(a[1], 0x0d) ^ mul(a[2], 0x09) ^ mul(a[3], 0x0e);
227
+ }
228
+ return s;
229
+ }
230
+
231
+ addRoundKey(s, w, round) {
232
+ for (let c = 0; c < 4; c++) {
233
+ const word = w[round * 4 + c];
234
+ s[0][c] ^= word[0];
235
+ s[1][c] ^= word[1];
236
+ s[2][c] ^= word[2];
237
+ s[3][c] ^= word[3];
238
+ }
239
+ return s;
240
+ }
241
+
242
+ pkcs7Pad(bytes) {
243
+ const padding = 16 - (bytes.length % 16);
244
+ const result = bytes.slice();
245
+ for (let i = 0; i < padding; i++) result.push(padding);
246
+ return result;
247
+ }
248
+
249
+ pkcs7Unpad(bytes) {
250
+ const padding = bytes[bytes.length - 1];
251
+ if (padding < 1 || padding > 16 || bytes.length < padding) {
252
+ throw new Error("Invalid PKCS#7 padding");
253
+ }
254
+ for (let i = 1; i <= padding; i++) {
255
+ if (bytes[bytes.length - i] !== padding) {
256
+ throw new Error("Corrupted PKCS#7 padding");
257
+ }
258
+ }
259
+ return bytes.slice(0, -padding);
260
+ }
261
+
262
+ encrypt(text, keyString) {
263
+ const key = this.parseKey(keyString);
264
+ const w = this.keyExpansion(key);
265
+ let inputBytes = text.split("").map((c) => c.charCodeAt(0));
266
+ inputBytes = this.pkcs7Pad(inputBytes);
267
+ let outputBytes = [];
268
+ for (let i = 0; i < inputBytes.length; i += 16) {
269
+ outputBytes.push(...this.cipher(inputBytes.slice(i, i + 16), w));
270
+ }
271
+ return outputBytes.map((b) => b.toString(16).padStart(2, "0")).join("");
272
+ }
273
+
274
+ decrypt(hexString, keyString) {
275
+ if (hexString.length % 2 !== 0)
276
+ throw new Error("Hex string must have even length");
277
+ const key = this.parseKey(keyString);
278
+ const w = this.keyExpansion(key);
279
+ let inputBytes = [];
280
+ for (let i = 0; i < hexString.length; i += 2) {
281
+ inputBytes.push(parseInt(hexString.substr(i, 2), 16));
282
+ }
283
+ if (inputBytes.length % 16 !== 0)
284
+ throw new Error("Ciphertext length must be multiple of 16");
285
+ let decryptedBytes = [];
286
+ for (let i = 0; i < inputBytes.length; i += 16) {
287
+ decryptedBytes.push(...this.invCipher(inputBytes.slice(i, i + 16), w));
288
+ }
289
+ decryptedBytes = this.pkcs7Unpad(decryptedBytes);
290
+ return String.fromCharCode.apply(null, decryptedBytes);
291
+ }
292
+ }
293
+ export default AES;
294
+
295
+ // Export singleton
296
+ // export default new AES();
package/src/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ export class AES {
2
+ encrypt(text: string, key: string): string;
3
+ decrypt(hex: string, key: string): string;
4
+ }
package/src/index.js ADDED
@@ -0,0 +1,4 @@
1
+ const AES = require("./AES");
2
+ const generateKey = require("./keygen");
3
+
4
+ module.exports = { AES, generateKey };
package/src/keygen.js ADDED
@@ -0,0 +1,39 @@
1
+ function generateKey(format = "hex", options = {}) {
2
+ const { length = 16, readable = false } = options;
3
+
4
+ if (![16, 24, 32].includes(length)) {
5
+ throw new Error("Key length must be 16, 24, or 32 bytes");
6
+ }
7
+
8
+ const bytes = new Uint8Array(length);
9
+
10
+ if (global.crypto?.getRandomValues) {
11
+ crypto.getRandomValues(bytes);
12
+ } else {
13
+ throw new Error("Secure random generator not available");
14
+ }
15
+
16
+ const toHex = (buf) =>
17
+ Array.from(buf, (b) => b.toString(16).padStart(2, "0")).join("");
18
+
19
+ const toBase64 = (buf) => Buffer.from(buf).toString("base64");
20
+
21
+ const toReadable = (buf) => {
22
+ const chars =
23
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()_+-=";
24
+ return Array.from(buf, (b) => chars[b % chars.length]).join("");
25
+ };
26
+
27
+ switch (format) {
28
+ case "hex":
29
+ return toHex(bytes);
30
+ case "base64":
31
+ return toBase64(bytes);
32
+ case "ascii":
33
+ return readable ? toReadable(bytes) : String.fromCharCode(...bytes);
34
+ default:
35
+ throw new Error("Invalid format");
36
+ }
37
+ }
38
+
39
+ module.exports = generateKey;