@1auth/crypto 0.0.0-alpha.9 → 0.0.0-beta.1

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.
Files changed (3) hide show
  1. package/index.js +732 -368
  2. package/package.json +53 -53
  3. package/LICENSE +0 -21
package/index.js CHANGED
@@ -1,30 +1,125 @@
1
- import { promisify } from 'node:util'
1
+ // Copyright 2003 - 2026 will Farrell, and 1Auth contributors.
2
+ // SPDX-License-Identifier: MIT
2
3
  import {
3
- randomBytes,
4
- createHash as checksum,
5
- createCipheriv,
6
- createDecipheriv,
7
- generateKeyPair as generateKeyPairCallback,
8
- sign,
9
- verify
10
- } from 'node:crypto'
11
- // https://github.com/napi-rs/node-rs/tree/main/packages/argon2
12
- import { hash as secretHash, verify as secretVerify } from '@node-rs/argon2'
13
-
14
- const options = {
15
- // randomBytes(32).toString('hex') // 256 bits
16
- encryptionSharedKey: '',
17
- encryptionMethod: 'chacha20-poly1305', // AES-256 GCM (aes-256-gcm) or ChaCha20-Poly1305 (chacha20-poly1305)
18
-
19
- digestAlgorithm: 'sha3-256',
20
- digestSalt: ''
21
- }
22
-
23
- export default (params) => {
24
- Object.assign(options, params)
25
- }
26
-
27
- const generateKeyPair = promisify(generateKeyPairCallback)
4
+ argon2Sync,
5
+ createCipheriv,
6
+ createDecipheriv,
7
+ createHash,
8
+ createHmac,
9
+ generateKeyPair as generateKeyPairCallback,
10
+ randomBytes,
11
+ randomInt,
12
+ sign as signCallback,
13
+ timingSafeEqual,
14
+ verify as verifyCallback,
15
+ } from "node:crypto";
16
+ import { promisify } from "node:util";
17
+ import { customAlphabet } from "nanoid";
18
+
19
+ const generateKeyPair = promisify(generateKeyPairCallback);
20
+ const sign = promisify(signCallback);
21
+ const verify = promisify(verifyCallback);
22
+
23
+ const defaults = {
24
+ symmetricEncryptionKey: undefined, // symmetricRandomEncryptionKey()
25
+ symmetricEncryptionAlgorithm: "chacha20-poly1305", // 2025-03: AES-256 GCM (aes-256-gcm) or ChaCha20-Poly1305 (chacha20-poly1305)
26
+ symmetricEncryptionEncoding: undefined, // https://nodejs.org/api/buffer.html#buffers-and-character-encodings
27
+ symmetricSignatureHashAlgorithm: undefined, // fallback to defaultHashAlgorithm
28
+ symmetricSignatureSecret: undefined, // symmetricRandomSignatureSecret()
29
+ symmetricSignatureEncoding: undefined, // fallback to defaultEncoding
30
+ asymmetricKeyNamedCurve: "P-384", // P-512
31
+ asymmetricSignatureHashAlgorithm: undefined, // fallback to defaultHashAlgorithm
32
+ asymmetricSignatureEncoding: undefined, // fallback to defaultEncoding
33
+ digestChecksumHashAlgorithm: undefined, // fallback to defaultHashAlgorithm
34
+ digestChecksumEncoding: undefined,
35
+ digestChecksumSalt: undefined, // randomChecksumSalt()
36
+ digestChecksumPepper: undefined, // randomChecksumPepper()
37
+ secretArgon2Algorithm: "argon2id",
38
+ secretArgon2Version: 19, // argon2id
39
+ secretArgon2Parallelism: 1, // argon2id
40
+ secretArgon2MemoryCost: 15, // argon2id
41
+ secretArgon2TimeCost: 3, // argon2id
42
+ secretArgon2NonceLength: 16, // argon2id
43
+ secretArgon2HashLength: 64, // argon2id
44
+
45
+ defaultEncoding: "base64",
46
+ defaultHashAlgorithm: "sha3-384",
47
+ };
48
+ const symmetricEncryptionEncodingLengths = {};
49
+ const options = {};
50
+ export default (opt = {}) => {
51
+ Object.assign(options, defaults, opt);
52
+
53
+ // Check options, set defaults
54
+ if (!options.symmetricEncryptionKey) {
55
+ throw new Error(
56
+ "@1auth/crypto symmetricEncryptionKey is empty, use a stored secret made from randomBytes(32) Encryption disabled.",
57
+ );
58
+ }
59
+ options.symmetricEncryptionKey = makeOptionsBuffer(
60
+ options.symmetricEncryptionKey,
61
+ );
62
+ options.symmetricEncryptionEncoding ??= options.defaultEncoding;
63
+ options.symmetricSignatureHashAlgorithm ??= options.defaultHashAlgorithm;
64
+ if (!options.symmetricSignatureSecret) {
65
+ throw new Error(
66
+ "@1auth/crypto symmetricSignatureSecret is empty, use a stored secret made from randomBytes(32) Signature disabled.",
67
+ );
68
+ }
69
+ options.symmetricSignatureSecret = makeOptionsBuffer(
70
+ options.symmetricSignatureSecret,
71
+ );
72
+ options.symmetricSignatureEncoding ??= options.defaultEncoding;
73
+ options.asymmetricSignatureHashAlgorithm ??= options.defaultHashAlgorithm;
74
+ options.asymmetricSignatureEncoding ??= options.defaultEncoding;
75
+ if (!options.digestChecksumSalt) {
76
+ throw new Error(
77
+ "@1auth/crypto digestChecksumSalt is empty, use a stored secret made from randomBytes(32) Checksum salting disabled.",
78
+ );
79
+ }
80
+ options.digestChecksumSalt = makeOptionsBuffer(options.digestChecksumSalt);
81
+ if (!options.digestChecksumPepper) {
82
+ throw new Error(
83
+ "@1auth/crypto digestChecksumPepper is empty, use a stored secret made from randomBytes(12) Checksum peppering disabled.",
84
+ );
85
+ }
86
+ options.digestChecksumPepper = makeOptionsBuffer(
87
+ options.digestChecksumPepper,
88
+ );
89
+ options.digestChecksumHashAlgorithm ??= options.defaultHashAlgorithm;
90
+ options.digestChecksumEncoding ??= options.defaultEncoding;
91
+
92
+ // Secrets
93
+ Object.assign(argon2Options, {
94
+ algorithm: options.secretArgon2Algorithm,
95
+ version: options.secretArgon2Version, // argon2id
96
+ parallelism: options.secretArgon2Parallelism, // argon2id
97
+ memoryCost: options.secretArgon2MemoryCost, // argon2id
98
+ timeCost: options.secretArgon2TimeCost, // argon2id
99
+ nonceLength: options.secretArgon2NonceLength, // argon2id
100
+ hashLength: options.secretArgon2HashLength, // argon2id
101
+ });
102
+
103
+ // Lengths
104
+ symmetricEncryptionEncodingLengths.iv = randomIV().toString(
105
+ options.symmetricEncryptionEncoding,
106
+ ).length;
107
+ symmetricEncryptionEncodingLengths.ivAndAuthTag =
108
+ symmetricEncryptionEncodingLengths.iv +
109
+ randomBytes(16).toString(options.symmetricEncryptionEncoding).length;
110
+ };
111
+
112
+ export const makeOptionsBuffer = (
113
+ value,
114
+ encoding = options.defaultEncoding,
115
+ ) => {
116
+ if (typeof value === "string") {
117
+ return Buffer.from(value, encoding);
118
+ }
119
+ return value;
120
+ };
121
+
122
+ export const getOptions = () => options;
28
123
 
29
124
  // *** entropy *** //
30
125
  // export const characterPoolSize = (value) => {
@@ -42,359 +137,628 @@ const generateKeyPair = promisify(generateKeyPairCallback)
42
137
  // return max - min
43
138
  // }
44
139
 
45
- // *** Random generators *** //
46
- export const characterPoolSize = {
47
- keyboard: 94, // (26 + 10 + 11) * 2
48
- alphaNumeric: 62, // (26 + 10) * 2
49
- base64: 64, // (26 + 10) * 2 + 2
50
- hex: 16,
51
- numeric: 10
52
- }
53
- // Alt: https://github.com/sindresorhus/crypto-random-string/blob/main/core.js
54
- export const randomAlphaNumeric = (bits) => {
55
- const characterLength = entropyToCharacterLength(
56
- bits,
57
- characterPoolSize.alphaNumeric
58
- )
59
- return randomBytes(characterLength * 2)
60
- .toString('base64')
61
- .replace(/[^a-zA-Z0-9]/g, '')
62
- .substring(0, characterLength)
63
- }
64
-
65
- export const randomBase64 = (bits) => {
66
- const characterLength = entropyToCharacterLength(
67
- bits,
68
- characterPoolSize.base64
69
- )
70
- return randomBytes(characterLength + 1)
71
- .toString('base64')
72
- .replace('=', '')
73
- }
74
-
75
- export const randomNumeric = (bits) => {
76
- const characterLength = entropyToCharacterLength(
77
- bits,
78
- characterPoolSize.numeric
79
- )
80
- const max = 10 ** characterLength
81
- let value = Math.floor(Math.random() * max).toString()
82
- if (value === max.toString()) {
83
- return randomNumeric(bits)
84
- }
85
- while (value.length < characterLength) value = '0' + value
86
- return value
87
- }
88
-
89
- export const randomHex = (bits) => {
90
- const characterLength = entropyToCharacterLength(bits, characterPoolSize.hex)
91
- return randomBytes(characterLength).toString('hex')
92
- }
93
-
94
- // *** configs *** //
95
- export const randomId = {
96
- type: 'id',
97
- entropy: 64,
98
- charPool: characterPoolSize.alphaNumeric,
99
- create: async () => randomAlphaNumeric(randomId.entropy)
100
- }
101
-
102
- export const subject = {
103
- type: 'id',
104
- entropy: 64,
105
- charPool: characterPoolSize.alphaNumeric,
106
- create: async () => randomAlphaNumeric(subject.entropy)
107
- }
108
-
109
- export const session = {
110
- type: 'id',
111
- entropy: 128, // ASVS 3.2.2
112
- charPool: characterPoolSize.alphaNumeric,
113
- expire: 15 * 60,
114
- create: async () => randomAlphaNumeric(session.entropy)
115
- }
116
-
117
- export const passwordSecret = {
118
- type: 'secret',
119
- entropy: 64,
120
- charPool: characterPoolSize.keyboard,
121
- otp: false,
122
- encode: async (value, encryptedKey, sub) =>
123
- createSecretHash(value).then((hash) => encrypt(hash, encryptedKey, sub)),
124
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub),
125
- verify: async (value, hash) => verifySecretHash(hash, value)
126
- }
127
-
128
- // aka Password/Credential Recovery
129
- export const passwordToken = {
130
- type: 'token',
131
- entropy: 20,
132
- charPool: characterPoolSize.numeric,
133
- otp: true,
134
- expire: 30,
135
- create: async () => randomNumeric(passwordToken.entropy),
136
- encode: async (value, encryptedKey, sub) =>
137
- createSecretHash(value).then((hash) => encrypt(hash, encryptedKey, sub)),
138
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub),
139
- verify: async (value, hash) => verifySecretHash(hash, value)
140
- }
141
-
142
- export const oneTimeSecret = {
143
- type: 'secret',
144
- entropy: 64, //
145
- charPool: characterPoolSize.base64,
146
- otp: false,
147
- expire: null,
148
- create: async () => randomBase64(oneTimeSecret.entropy),
149
- encode: async (value, encryptedKey, sub) => encrypt(value, encryptedKey, sub),
150
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub)
151
- // create, hash, verify to be handled within
152
- }
153
- export const oneTimeToken = {
154
- type: 'token',
155
- entropy: 20,
156
- charPool: characterPoolSize.numeric,
157
- otp: true,
158
- expire: 30
159
- // create, hash, verify to be handled within
160
- }
161
-
162
- // aka lookup secret
163
- export const recoveryCode = {
164
- type: 'secret',
165
- entropy: 112,
166
- charPool: characterPoolSize.alphaNumeric,
167
- otp: true,
168
- create: async () => randomAlphaNumeric(recoveryCode.entropy),
169
- encode: async (value, encryptedKey, sub) =>
170
- createSecretHash(value).then((hash) => encrypt(hash, encryptedKey, sub)),
171
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub),
172
- verify: async (value, hash) => verifySecretHash(hash, value)
173
- }
174
-
175
- export const outOfBandToken = {
176
- type: 'token',
177
- entropy: 20,
178
- charPool: characterPoolSize.numeric,
179
- otp: true,
180
- expire: 10 * 60,
181
- create: async () => randomNumeric(outOfBandToken.entropy),
182
- encode: async (value, encryptedKey, sub) =>
183
- createSecretHash(value).then((hash) => encrypt(hash, encryptedKey, sub)),
184
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub),
185
- verify: async (value, hash) => verifySecretHash(hash, value)
186
- }
187
-
188
- export const accessToken = {
189
- type: 'secret',
190
- entropy: 112,
191
- charPool: characterPoolSize.alphaNumeric,
192
- otp: false,
193
- expire: 30 * 24 * 60 * 60, // allow override from user
194
- create: async () => randomAlphaNumeric(accessToken.entropy),
195
- encode: async (value, encryptedKey, sub) =>
196
- createSecretHash(value).then((hash) => encrypt(hash, encryptedKey, sub)),
197
- decode: async (value, encryptedKey, sub) => decrypt(value, encryptedKey, sub),
198
- verify: async (value, hash) => verifySecretHash(hash, value)
199
- }
200
-
201
140
  // *** Helpers *** //
202
- export const characterLengthToEntropy = (
141
+ // Ref: https://therootcompany.com/blog/how-many-bits-of-entropy-per-character/
142
+ export const entropyToCharacterLength = (bits, characterPoolSize) => {
143
+ // bits*ln(2)/ln(characterPoolSize)
144
+ return Math.ceil((bits * Math.LN2) / Math.log(characterPoolSize));
145
+ };
146
+ /* export const characterLengthToEntropy = (
203
147
  characterLength,
204
- characterPoolSize
148
+ characterPoolSize,
205
149
  ) => {
206
150
  // log_2(characterPoolSize^characterLength)
207
- return Math.round(Math.log2(characterPoolSize ** characterLength))
208
- }
151
+ return Math.floor(Math.log2(characterPoolSize ** characterLength));
152
+ }; */
209
153
 
210
- export const entropyToCharacterLength = (bits, characterPoolSize) => {
211
- // bits*ln(2)/ln(characterPoolSize)
212
- return Math.round((bits * Math.LN2) / Math.log(characterPoolSize))
213
- }
154
+ // *** Random generators *** //
155
+ export { randomBytes, randomInt, randomUUID } from "node:crypto";
156
+
157
+ export const charactersNumeric = "0123456789";
158
+ export const charactersAlphaUpper = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
159
+ export const charactersAlphaLower = "abcdefghijklmnopqrstuvwxyz";
160
+ export const charactersAlpha = charactersAlphaUpper + charactersAlphaLower;
161
+ export const charactersAlphaNumeric = charactersAlpha + charactersNumeric;
162
+ export const charactersDistinguishable = "CDEHKMPRTUWXY012458";
163
+
164
+ const randomCharactersCache = {
165
+ charactersAlphaNumeric: customAlphabet(charactersAlphaNumeric),
166
+ };
167
+ export const randomCharacters = (
168
+ length,
169
+ characters = charactersAlphaNumeric,
170
+ ) => {
171
+ randomCharactersCache[characters] ??= customAlphabet(characters);
172
+ return randomCharactersCache[characters](length);
173
+ };
174
+
175
+ export const randomAlphaNumeric = (characterLength) => {
176
+ return randomCharacters(characterLength, charactersAlphaNumeric);
177
+ };
178
+
179
+ export const randomNumeric = (characterLength) => {
180
+ let value = "";
181
+ for (let i = characterLength; i--; ) {
182
+ value += randomInt(9);
183
+ }
184
+ return value;
185
+ };
186
+
187
+ // *** configs *** //
188
+ // Input: {id, prefix, entropy, characters, opt, expire}
189
+ // Output: {id, type, opt, expire, create, ...}
190
+ export const makeRandomConfigObject = ({
191
+ id,
192
+ prefix = "",
193
+ entropy = 64,
194
+ characters = charactersAlphaNumeric,
195
+ ...params
196
+ } = {}) => {
197
+ const minLength = entropyToCharacterLength(entropy, characters.length);
198
+ const config = {
199
+ id,
200
+ type: "id",
201
+ create: () => prefix + randomCharacters(minLength, characters),
202
+ ...params,
203
+ };
204
+ return config;
205
+ };
214
206
 
215
207
  // *** Digests *** //
216
- export const createDigest = async (value, { algorithm, salt } = {}) => {
217
- algorithm ??= options.digestAlgorithm
218
- salt ??= options.digestSalt
219
- const hash = checksum(algorithm)
220
- .update(value + salt)
221
- .digest('hex')
222
- return `${algorithm}:${hash}`
223
- }
208
+ export const randomChecksumSalt = () => {
209
+ return randomBytes(32); // 256 bits
210
+ };
211
+ export const randomChecksumPepper = () => {
212
+ return randomIV(); // 96
213
+ };
214
+
215
+ export const createSaltedValue = (value, { checksumSalt } = {}) => {
216
+ checksumSalt ??= options.digestChecksumSalt;
217
+ if (!checksumSalt) {
218
+ return value;
219
+ }
220
+ const newValue = value + checksumSalt;
221
+ return newValue;
222
+ };
223
+ export const createPepperedValue = (
224
+ value,
225
+ { checksumPepper, encryptionKey } = {},
226
+ ) => {
227
+ checksumPepper ??= options.digestChecksumPepper;
228
+ encryptionKey ??= options.symmetricEncryptionKey;
229
+ if (!checksumPepper || !encryptionKey) {
230
+ return value;
231
+ }
232
+ const newValue = symmetricEncrypt(value, {
233
+ encryptionKey,
234
+ sub: "",
235
+ iv: checksumPepper,
236
+ });
237
+ return newValue;
238
+ };
239
+
240
+ export const createChecksum = (value, { hashAlgorithm, encoding } = {}) => {
241
+ hashAlgorithm ??= options.digestChecksumHashAlgorithm;
242
+ encoding ??= options.digestChecksumEncoding;
243
+ return createHash(hashAlgorithm).update(value).digest(encoding);
244
+ };
245
+ export const createSeasonedChecksum = (
246
+ value,
247
+ { hashAlgorithm, encoding, checksumSalt, checksumPepper } = {},
248
+ ) => {
249
+ return createChecksum(
250
+ createPepperedValue(createSaltedValue(value, { checksumSalt }), {
251
+ checksumPepper,
252
+ }),
253
+ {
254
+ hashAlgorithm,
255
+ encoding,
256
+ },
257
+ );
258
+ };
259
+
260
+ export const createDigest = (value, { hashAlgorithm, encoding } = {}) => {
261
+ hashAlgorithm ??= options.digestChecksumHashAlgorithm;
262
+ const checksum = createChecksum(value, { hashAlgorithm, encoding });
263
+ return `${hashAlgorithm}:${checksum}`;
264
+ };
265
+ export const createSaltedDigest = (
266
+ value,
267
+ { hashAlgorithm, encoding, checksumSalt } = {},
268
+ ) => {
269
+ hashAlgorithm ??= options.digestChecksumHashAlgorithm;
270
+ const checksum = createChecksum(createSaltedValue(value, { checksumSalt }), {
271
+ hashAlgorithm,
272
+ encoding,
273
+ });
274
+ return `${hashAlgorithm}:${checksum}`;
275
+ };
276
+ export const createPepperedDigest = (
277
+ value,
278
+ { hashAlgorithm, encoding, checksumPepper, encryptionKey } = {},
279
+ ) => {
280
+ hashAlgorithm ??= options.digestChecksumHashAlgorithm;
281
+ const checksum = createChecksum(
282
+ createPepperedValue(value, { checksumPepper, encryptionKey }),
283
+ {
284
+ hashAlgorithm,
285
+ encoding,
286
+ },
287
+ );
288
+ return `${hashAlgorithm}:${checksum}`;
289
+ };
290
+ export const createSeasonedDigest = (
291
+ value,
292
+ { hashAlgorithm, encoding, checksumSalt, checksumPepper, encryptionKey } = {},
293
+ ) => {
294
+ hashAlgorithm ??= options.digestChecksumHashAlgorithm;
295
+ const checksum = createSeasonedChecksum(value, {
296
+ hashAlgorithm,
297
+ encoding,
298
+ checksumSalt,
299
+ checksumPepper,
300
+ encryptionKey,
301
+ });
302
+ return `${hashAlgorithm}:${checksum}`;
303
+ };
224
304
 
225
305
  // *** Hashing *** //
226
- const hashOptions = {
227
- timeCost: 3,
228
- memoryCost: 2 ** 16,
229
- saltLength: 16,
230
- parallelism: 1,
231
- outputLen: 64, // hashLength: 128
232
- algorithm: 2,
233
- version: 1
234
- }
235
-
236
- export const createSecretHash = async (value, options = hashOptions) => {
237
- return secretHash(value, options)
238
- }
306
+ const argon2Options = {
307
+ algorithm: "argon2id",
308
+ version: 19,
309
+ parallelism: 1, // Default 1
310
+ memoryCost: 15, // memory 2^memoryCost // Default 2 ** 12 = 4MB
311
+ timeCost: 3, // Default 3
312
+ nonceLength: 16,
313
+ hashLength: 64, // hashLength: 128 // Default 32
314
+
315
+ secret: undefined, // pepper
316
+ associatedData: undefined, // sub
317
+ };
318
+ export const encodeArgon2 = ({
319
+ algorithm,
320
+ version,
321
+ memoryCost,
322
+ timeCost,
323
+ parallelism,
324
+ nonce,
325
+ hash,
326
+ } = {}) => {
327
+ return `$${algorithm}$v=${version}$m=${memoryCost},t=${timeCost},p=${parallelism}$${nonce.toString(options.defaultEncoding)}$${hash.toString(options.defaultEncoding)}`;
328
+ };
329
+ export const decodeArgon2 = (str) => {
330
+ const argon2Options = {};
331
+ const optionMap = {
332
+ m: "memoryCost",
333
+ t: "timeCost",
334
+ p: "parallelism",
335
+ };
336
+ let [, algorithm, version, variables, nonce, hash] = str.split("$");
337
+
338
+ if (version) {
339
+ version = Number.parseInt(version.replace("v=", ""), 10);
340
+ }
341
+ nonce = Buffer.from(nonce, options.defaultEncoding);
342
+ hash = Buffer.from(hash, options.defaultEncoding);
343
+ const nonceLength = Buffer.byteLength(nonce);
344
+ const hashLength = Buffer.byteLength(hash);
345
+ Object.assign(argon2Options, {
346
+ algorithm,
347
+ version,
348
+ nonce,
349
+ nonceLength,
350
+ hash,
351
+ hashLength,
352
+ });
353
+ for (const pair of variables.split(",")) {
354
+ const [key, value] = pair.split("=");
355
+ argon2Options[optionMap[key]] = Number.parseInt(value, 10);
356
+ }
357
+ return argon2Options;
358
+ };
359
+
360
+ export const createArgon2 = (
361
+ message,
362
+ {
363
+ algorithm,
364
+ version,
365
+ parallelism,
366
+ memoryCost,
367
+ timeCost,
368
+ nonceLength,
369
+ hashLength,
370
+ } = {},
371
+ ) => {
372
+ algorithm ??= options.secretArgon2Algorithm;
373
+ version ??= options.secretArgon2Version;
374
+ memoryCost ??= options.secretArgon2MemoryCost;
375
+ timeCost ??= options.secretArgon2TimeCost;
376
+ parallelism ??= options.secretArgon2Parallelism;
377
+ nonceLength ??= options.secretArgon2NonceLength;
378
+ hashLength ??= options.secretArgon2HashLength;
379
+
380
+ const nonce = randomBytes(nonceLength);
381
+ const hash = argon2Sync(algorithm, {
382
+ message,
383
+ nonce,
384
+ parallelism,
385
+ memory: 2 ** memoryCost,
386
+ passes: timeCost,
387
+ tagLength: hashLength,
388
+ });
389
+ return encodeArgon2({
390
+ algorithm,
391
+ version,
392
+ memoryCost,
393
+ timeCost,
394
+ parallelism,
395
+ nonce,
396
+ hash,
397
+ });
398
+ };
399
+ export const verifyArgon2 = (derivedKey, message) => {
400
+ const {
401
+ algorithm,
402
+ memoryCost,
403
+ timeCost,
404
+ parallelism,
405
+ nonce,
406
+ hash,
407
+ hashLength,
408
+ } = decodeArgon2(derivedKey);
409
+
410
+ const verifyHash = argon2Sync(algorithm, {
411
+ message,
412
+ nonce,
413
+ parallelism,
414
+ memory: 2 ** memoryCost,
415
+ passes: timeCost,
416
+ tagLength: hashLength,
417
+ });
418
+ return timingSafeEqual(hash, verifyHash);
419
+ };
420
+
421
+ export const createSecretHash = async (value, options) => {
422
+ return createArgon2(value, options);
423
+ };
239
424
 
240
425
  export const verifySecretHash = async (hash, value) => {
241
- return secretVerify(hash, value)
242
- }
243
-
244
- // *** Encryption *** //
245
- const authTagLength = 16
246
-
247
- export const makeSymetricKey = (assocData) => {
248
- if (!options.encryptionSharedKey) {
249
- return { encryptionKey: '', encryptedKey: '' }
250
- }
251
- const encryptionKey = randomBytes(32)
252
- const encryptedKey = __encrypt(
253
- encryptionKey,
254
- Buffer.from(options.encryptionSharedKey, 'hex'),
255
- assocData,
256
- 'hex',
257
- 'hex'
258
- )
259
- return { encryptionKey, encryptedKey }
260
- }
261
-
262
- export const encrypt = (data, encryptedKey, assocData) => {
263
- if (!encryptedKey) return data
264
-
265
- const encryptionKey = __decrypt(
266
- encryptedKey,
267
- Buffer.from(options.encryptionSharedKey, 'hex'),
268
- assocData,
269
- 'hex',
270
- 'hex'
271
- )
272
- return __encrypt(
273
- data,
274
- Buffer.from(encryptionKey, 'hex'),
275
- assocData,
276
- 'utf8',
277
- 'hex'
278
- )
279
- }
280
-
281
- const __encrypt = (
282
- data,
283
- encryptionKey,
284
- assocData,
285
- decoding = 'utf8',
286
- encoding = 'hex'
426
+ return verifyArgon2(hash, value);
427
+ };
428
+
429
+ // *** Symmetric Encryption *** //
430
+ const authTagLength = 16;
431
+
432
+ export const symmetricRandomEncryptionKey = () => {
433
+ return randomBytes(32); // 256 bits
434
+ };
435
+
436
+ export const randomIV = () => {
437
+ return randomBytes(12); // 96 bits
438
+ };
439
+
440
+ export const symmetricGenerateEncryptionKey = (
441
+ sub,
442
+ { encryptionKey, signatureSecret } = {},
443
+ ) => {
444
+ encryptionKey ??= options.symmetricEncryptionKey;
445
+ signatureSecret ??= options.symemeticSignatureSecret;
446
+
447
+ const rowEncryptionKey = symmetricRandomEncryptionKey();
448
+ const rowEncryptedKey = symmetricEncrypt(rowEncryptionKey, {
449
+ encryptionKey,
450
+ signatureSecret,
451
+ sub,
452
+ });
453
+ return { encryptionKey: rowEncryptionKey, encryptedKey: rowEncryptedKey };
454
+ };
455
+
456
+ // sub add context to encryption
457
+ export const symmetricEncryptFields = (
458
+ values,
459
+ { encryptedKey, encryptionKey, signatureSecret, sub },
460
+ fields = [],
461
+ ) => {
462
+ if (encryptedKey) {
463
+ encryptionKey ??= symmetricDecryptKey(encryptedKey, {
464
+ signatureSecret,
465
+ sub,
466
+ });
467
+ }
468
+ if (!encryptionKey) return values;
469
+ const encryptedValues = structuredClone(values);
470
+ for (const key of fields) {
471
+ encryptedValues[key] &&= symmetricEncrypt(encryptedValues[key], {
472
+ encryptionKey,
473
+ signatureSecret,
474
+ sub,
475
+ });
476
+ }
477
+ return encryptedValues;
478
+ };
479
+
480
+ export const symmetricEncrypt = (
481
+ data,
482
+ { encryptedKey, encryptionKey, signatureSecret, sub, decoding, encoding, iv },
483
+ ) => {
484
+ if (encryptedKey) {
485
+ encryptionKey ??= symmetricDecryptKey(encryptedKey, {
486
+ signatureSecret,
487
+ sub,
488
+ });
489
+ }
490
+ if (!encryptionKey || !data) return data;
491
+ decoding ??= "utf8";
492
+ encoding ??= options.symmetricEncryptionEncoding;
493
+ iv ??= randomIV();
494
+ const cipher = createCipheriv(
495
+ options.symmetricEncryptionAlgorithm,
496
+ encryptionKey,
497
+ iv,
498
+ {
499
+ authTagLength,
500
+ },
501
+ );
502
+ cipher.setAAD(sub);
503
+ const encryptedData =
504
+ cipher.update(data, decoding, encoding) + cipher.final(encoding);
505
+ const authTag = cipher.getAuthTag();
506
+
507
+ const encryptedDataPacket =
508
+ iv.toString(encoding) + authTag.toString(encoding) + encryptedData;
509
+
510
+ // add signature to end
511
+ return symmetricSignatureSign(encryptedDataPacket, { signatureSecret });
512
+ };
513
+
514
+ export const symmetricDecryptFields = (
515
+ encryptedValues,
516
+ { encryptedKey, encryptionKey, signatureSecret, sub },
517
+ fields = [],
518
+ ) => {
519
+ if (encryptedKey) {
520
+ encryptionKey ??= symmetricDecryptKey(encryptedKey, {
521
+ signatureSecret,
522
+ sub,
523
+ });
524
+ }
525
+ if (!encryptionKey) return encryptedValues;
526
+ const values = structuredClone(encryptedValues);
527
+ for (const key of fields) {
528
+ values[key] &&= symmetricDecrypt(values[key], {
529
+ encryptionKey,
530
+ signatureSecret,
531
+ sub,
532
+ });
533
+ }
534
+ return values;
535
+ };
536
+
537
+ export const symmetricDecryptKey = (
538
+ encryptedKey,
539
+ { sub, encryptionKey, signatureSecret } = {},
540
+ ) => {
541
+ encryptionKey ??= options.symmetricEncryptionKey;
542
+ signatureSecret ??= options.symemeticSignatureSecret;
543
+ return Buffer.from(
544
+ symmetricDecrypt(encryptedKey, {
545
+ encryptionKey,
546
+ signatureSecret,
547
+ sub,
548
+ encoding: options.symmetricEncryptionEncoding,
549
+ }),
550
+ options.symmetricEncryptionEncoding,
551
+ );
552
+ };
553
+
554
+ export const symmetricDecrypt = (
555
+ signedEncryptedDataPacket,
556
+ { encryptedKey, encryptionKey, signatureSecret, sub, decoding, encoding },
557
+ ) => {
558
+ if (encryptedKey) {
559
+ encryptionKey ??= symmetricDecryptKey(encryptedKey, {
560
+ signatureSecret,
561
+ sub,
562
+ });
563
+ }
564
+ if (!encryptionKey || !signedEncryptedDataPacket)
565
+ return signedEncryptedDataPacket;
566
+ decoding ??= options.symmetricEncryptionEncoding;
567
+ encoding ??= "utf8";
568
+
569
+ // remove signature when successful
570
+ const encryptedDataPacket = symmetricSignatureVerify(
571
+ signedEncryptedDataPacket,
572
+ {
573
+ signatureSecret,
574
+ },
575
+ );
576
+
577
+ if (encryptedDataPacket === false) {
578
+ throw new Error("Signature incorrect");
579
+ }
580
+ const iv = Buffer.from(
581
+ encryptedDataPacket.substring(0, symmetricEncryptionEncodingLengths.iv),
582
+ decoding,
583
+ );
584
+ const authTag = Buffer.from(
585
+ encryptedDataPacket.substring(
586
+ symmetricEncryptionEncodingLengths.iv,
587
+ symmetricEncryptionEncodingLengths.ivAndAuthTag,
588
+ ),
589
+ decoding,
590
+ );
591
+ const encryptedData = Buffer.from(
592
+ encryptedDataPacket.substring(
593
+ symmetricEncryptionEncodingLengths.ivAndAuthTag,
594
+ ),
595
+ decoding,
596
+ );
597
+
598
+ const decipher = createDecipheriv(
599
+ options.symmetricEncryptionAlgorithm,
600
+ encryptionKey,
601
+ iv,
602
+ {
603
+ authTagLength,
604
+ },
605
+ );
606
+ decipher.setAAD(sub);
607
+
608
+ decipher.setAuthTag(authTag);
609
+ const data =
610
+ decipher.update(encryptedData, decoding, encoding) +
611
+ decipher.final(encoding);
612
+ return data;
613
+ };
614
+
615
+ // *** Symmetric Signatures *** //
616
+ export const symmetricRandomSignatureSecret = () => {
617
+ return randomBytes(32); // 256 bits
618
+ };
619
+
620
+ export const symmetricGenerateSignatureSecret = () => {
621
+ const signatureSecret = symmetricRandomSignatureSecret();
622
+ return { signatureSecret };
623
+ };
624
+
625
+ export const symmetricSignatureSign = (
626
+ data,
627
+ { hashAlgorithm, signatureSecret } = {},
628
+ ) => {
629
+ signatureSecret ??= options.symmetricSignatureSecret;
630
+ hashAlgorithm ??= options.symmetricSignatureHashAlgorithm;
631
+ const signature = createHmac(hashAlgorithm, signatureSecret)
632
+ .update(data)
633
+ .digest(options.symmetricSignatureEncoding)
634
+ .replace(/=+$/, "");
635
+
636
+ const signedData = `${data}.${signature}`;
637
+ return signedData;
638
+ };
639
+
640
+ export const symmetricSignatureVerify = (
641
+ signedData,
642
+ { hashAlgorithm, signatureSecret } = {},
643
+ ) => {
644
+ if (typeof signedData !== "string") return false;
645
+ let lastIndexOf = signedData.lastIndexOf(".");
646
+ // Test for unsigned
647
+ if (lastIndexOf < 0) {
648
+ lastIndexOf = signedData.length;
649
+ }
650
+ const data = signedData.substring(0, lastIndexOf);
651
+ const signedDataExpected = symmetricSignatureSign(data, {
652
+ hashAlgorithm,
653
+ signatureSecret,
654
+ });
655
+ return safeEqual(signedData, signedDataExpected) && data;
656
+ };
657
+
658
+ // Allow rotation of global encryption key, global signature secret, and row encryption key
659
+ export const symmetricRotation = (
660
+ oldEncryptedValues,
661
+ oldOptions, // { encryptionKey, signatureSecret, sub, decoding, encoding }, // old
662
+ oldFields,
663
+ newOptions, // { encryptionKey, signatureSecret, sub, decoding, encoding }, // new
664
+ newFields,
665
+ transform = (data) => {
666
+ return data;
667
+ },
287
668
  ) => {
288
- const iv = randomBytes(12) // 96 bits
289
- const cipher = createCipheriv(options.encryptionMethod, encryptionKey, iv, {
290
- authTagLength
291
- })
292
- cipher.setAAD(Buffer.from(assocData, 'utf8'))
293
- const encryptedData =
294
- cipher.update(data, decoding, encoding) + cipher.final(encoding)
295
- const authTag = cipher.getAuthTag()
296
- return (
297
- iv.toString(encoding) + // 24 char
298
- authTag.toString(encoding) + // 32 char
299
- encryptedData
300
- )
301
- }
302
-
303
- export const decrypt = (encryptedData, encryptedKey, assocData) => {
304
- if (!options.encryptionSharedKey || !encryptedKey) return encryptedData
305
- const encryptionKey = __decrypt(
306
- encryptedKey,
307
- Buffer.from(options.encryptionSharedKey, 'hex'),
308
- assocData,
309
- 'hex',
310
- 'hex'
311
- )
312
- const data = __decrypt(
313
- encryptedData,
314
- Buffer.from(encryptionKey, 'hex'),
315
- assocData,
316
- 'hex',
317
- 'utf8'
318
- )
319
- return data
320
- }
321
-
322
- const __decrypt = (
323
- data,
324
- encryptionKey,
325
- assocData,
326
- decoding = 'hex',
327
- encoding = 'utf8'
669
+ if (oldOptions.sub !== newOptions.sub) throw new Error("Mismatching `sub`");
670
+
671
+ const oldEncryptedValuesClone = structuredClone(oldEncryptedValues);
672
+ // Don't use structuredClone, converts Buffer to Uint8Array ...
673
+ const oldOptionsClone = { ...oldOptions };
674
+ const newOptionsClone = { ...(newOptions ?? oldOptions) };
675
+
676
+ // decrypt old encryption key
677
+ const { encryptionKey: oldEncryptedKey } = oldEncryptedValuesClone;
678
+ oldEncryptedValuesClone.encryptionKey = undefined;
679
+
680
+ const oldEncryptionKey = symmetricDecryptKey(
681
+ oldEncryptedKey,
682
+ oldOptionsClone,
683
+ );
684
+ oldOptionsClone.encryptionKey = oldEncryptionKey;
685
+
686
+ // decrypt
687
+ const data = transform(
688
+ symmetricDecryptFields(
689
+ oldEncryptedValuesClone,
690
+ { ...oldOptionsClone, encryptionKey: oldEncryptionKey },
691
+ oldFields,
692
+ ),
693
+ );
694
+
695
+ // rotate encryptionKey
696
+ const { encryptionKey: newEncryptionKey, encryptedKey: newEncryptedKey } =
697
+ symmetricGenerateEncryptionKey(newOptionsClone.sub, newOptionsClone);
698
+ newOptionsClone.encryptionKey = newEncryptionKey;
699
+
700
+ // encrypt
701
+ const newEncryptedValues = symmetricEncryptFields(
702
+ data,
703
+ newOptionsClone,
704
+ newFields ?? oldFields,
705
+ );
706
+ newEncryptedValues.encryptionKey = newEncryptedKey;
707
+
708
+ return newEncryptedValues;
709
+ };
710
+
711
+ // *** Asymmetric Signatures *** //
712
+ // asymmetricKeyPairType
713
+ export const makeAsymmetricKeys = async () => {
714
+ const { publicKey, privateKey } = await generateKeyPair("ec", {
715
+ namedCurve: options.asymmetricKeyNamedCurve,
716
+ paramEncoding: "named",
717
+ publicKeyEncoding: {
718
+ type: "spki",
719
+ format: "pem",
720
+ },
721
+ privateKeyEncoding: {
722
+ type: "sec1",
723
+ format: "pem",
724
+ // Encryption done at another level for consistency
725
+ // cipher: options.asymmetricEncryptionAlgorithm,
726
+ // passphrase: encryptionKey,
727
+ },
728
+ });
729
+ return { publicKey, privateKey };
730
+ };
731
+
732
+ export const makeAsymmetricSignature = async (
733
+ data,
734
+ privateKey,
735
+ { hashAlgorithm } = {},
328
736
  ) => {
329
- const iv = Buffer.from(data.substring(0, 24), decoding)
330
- const authTag = Buffer.from(data.substring(24, 56), decoding)
331
- const encryptedData = Buffer.from(data.substring(56), decoding)
332
-
333
- const decipher = createDecipheriv(
334
- options.encryptionMethod,
335
- encryptionKey,
336
- iv,
337
- {
338
- authTagLength
339
- }
340
- )
341
- decipher.setAAD(Buffer.from(assocData, 'utf8'))
342
- decipher.setAuthTag(authTag)
343
- return (
344
- decipher.update(encryptedData, decoding, encoding) +
345
- decipher.final(encoding)
346
- )
347
- }
348
-
349
- // *** Signatures *** //
350
- export const makeAsymmetricKeys = async (encryptionKey) => {
351
- const { publicKey, privateKey } = await generateKeyPair('ec', {
352
- namedCurve: 'P-384', // P-512
353
- paramEncoding: 'named',
354
- publicKeyEncoding: {
355
- type: 'spki',
356
- format: 'pem'
357
- },
358
- privateKeyEncoding: {
359
- type: 'sec1',
360
- format: 'pem',
361
- // TODO remove encryption for other with sub check?
362
- cipher: options.encryptionMethod,
363
- passphrase: encryptionKey
364
- }
365
- })
366
- return { publicKey, privateKey }
367
- }
368
-
369
- export const makeSignature = (data, privateKey, algorithm = 'SHA3-256') => {
370
- return sign(algorithm, Buffer.from(data), privateKey).toString('base64')
371
- }
372
- export const verifySignature = (
373
- data,
374
- publicKey,
375
- signature,
376
- algorithm = 'SHA3-256'
737
+ hashAlgorithm ??= options.asymmetricSignatureHashAlgorithm;
738
+ return (await sign(hashAlgorithm, Buffer.from(data), privateKey)).toString(
739
+ options.asymmetricSignatureEncoding,
740
+ );
741
+ };
742
+ export const verifyAsymmetricSignature = async (
743
+ data,
744
+ publicKey,
745
+ signature,
746
+ { hashAlgorithm } = {},
377
747
  ) => {
378
- return verify(
379
- algorithm,
380
- Buffer.from(data),
381
- publicKey,
382
- Buffer.from(signature, 'base64')
383
- )
384
- }
385
- // const assocData = 'sub'
386
- // const input = 'data'
387
- //
388
- // const {encryptedKey} = makeSymetricKey(assocData)
389
- // const encryptedData = encrypt(input, encryptedKey, assocData)
390
- // const output = decrypt(encryptedData, encryptedKey, assocData)
391
- // console.log(assocData, input, output, encryptedData)
392
-
393
- // const assocData = 'tlSIcVp1XEF'
394
- // const encryptionKey =
395
- // 'b9ebfdab6603dd8e151138ec8298aaf8b49bf6d38480f9864e9e72e65c4d8b59.b9f9bc89d7f3ce4aa1e1af469d10508b.aa1b6a682fcc186e867a9cfd'
396
- // const value =
397
- // '76ebdea75ea529c16f1645d5435413934cbb97378293776cb446331e6d8323865a808b7f0822cd4f36ef6cca57354ea7c955c94d232a55038321184f4294971315fda4b8dc2f33422bbd3a5c978edc0f5bf019f818f0c92f7c570bdc49fe2f71df3856655198b6723fa52697b9225b2e79f04ed80cd35ef61a8e1e06c3751d3f9caa40aa9a41528ce5ab1bfae8ecff0feab784497ccbf2c7dca4461c6b9a74d1ded6233dc38ad75d0fe2f57cfda2bd1d59ed1f8c53de911cf8071dc7cefde7870c303137586bc0c5f85fe93505d9056994a4d8e59df2027b564c303aa723e98ae5934b15039f90d21827ac22b824593f334466622582a2857f04d8bf450310a9924060d113d2ece0259da68376b31a3c2e8a0b79e81f8efe96bf2b7a6b5b1841edca2566a0a89ab80ee6d6ac2ed24e788ad318a1238dfa5b9e965d256935d3aeafe52f986a530b2f9225bbe7a73b43e6515ce789701f501546239460bccc46285f3fcff0c54c2b6df820334a974abea81460fd4ac99a13cb88e296a2275f80f4c783757319417078458977461dd5e101f9f9b7d303578379dc15ee1b549e3fcceffffba895ecc8291d1f82e150ce8e10640fd79f2e0666167ef7d529cd28cb76a72bf2b3e239dbb845bedd39f42c938bbe711542231fb835edb547d919b3c695272f4cd43640eb3bed2b86948278e5aeeb67ef932ef08332730e75752fd5bd247e2dd30470fc493362d2ecac72237dfbf0a1694f8e6b8c18ab24c71eb723a3f610a056a73fea90f4f8660bfc6dec46fa52a55a3d72a5c9b97770bff7d52ea91b97cc643d915341642e201918fcb088986e9134e133519c6575048e3f840622e569fc5fa66e4f0c31681c9de4b1b1f6acb179728bc0a9f9950bf2e0c8d49da835298013977a2f97d7052bcbedbc39b875bbf9a0622ede589810175ab2455ea72a8274659af7066a2c97ba3aacce84531d8685d08b15d3619038997ae459ac916a88bedaf619f574236d1b86b02f29edaf78684c91c6ee45199b861359ee374fecb95be8a85dc012991d22564adeb2ec95f160574858fa010c40ce74077a08f0e681eb4b10a0093e885f115a12469a82b07012ad4e20b836d5711358c47969af89d09c9299edc540321fe897312ca49c9e8f93d50dc68394d0cc1d108f38e3534821b979c405c1f526a3b57651897873aeeb0909b176fb2034f9fdb1d43a8003809af29ff0bdc456a593029c4526b270908ac94b620a7cb8b7da20a6421e0f2671c899c20d78e1e0a1c3ab0b92948c90fca3c36d21a5e53143bc7e061773251364f8ce3b8992b6313c9604dc19c018b9efc6ca8f7c1fe039077fd76775461d1fa3968f51be7e340e3f09b40d6b44c77a7cbf7d71cad2ddea1121b31d27470a38cda8f8d38170a0d8f0b02d56f8e97b2134597d6111ea6670545bd4f7b4e4d6d7cf2fb5b787a68ba8ee84775f06db195f47282d9646dfbdbb57701e2ef5a432b621cb54a70e94de6b7a3f95bfe3c50793e08a27f76f832070fb2d23ed19dcd75f798aeff0c3e76d8215d43e1a8b7e643bffa243691adf2abcd52f465390e92e0344e2f452673f12d50e2ead0496ba76504ae0f78c81f2a2b5a64b39d3fb35f39f178b9a1587d1f07ed28e7696bfc8740f429f6cc35c964ae04ef39c1070eab6415be3aab887ff6192ac4d49ba9b169221b47d73c55f6010dda07a77cbcf54b779d380591786ba70c6d7000af57034539487f801aeb5c097939682e1530bc26c0b030bcab327ddaaaac5c9b969301b6d4ed7f601a46e8431e8cae3800c80c42686fee3b7625742798ced5976d163d2c8aad1bdac36c001e4e246fdb7b4c6850ed99554cfc0c07b7c7acc7659fd042989cc291ec2bd03a59e439860a5c48e430780f9d85c9acb3e85e741e73163f29afb7c43f143e7ada99a4670cbbe2210bfce8d36ee86.a5237f2d798c9f98b26a676794d3c3f6.0f15d0f53657150aeb1462d5'
398
- // const output = decrypt(value, encryptionKey, assocData)
399
- // console.log(output)
400
- // *** TOTP *** //
748
+ hashAlgorithm ??= options.asymmetricSignatureHashAlgorithm;
749
+ return await verify(
750
+ hashAlgorithm,
751
+ Buffer.from(data),
752
+ publicKey,
753
+ Buffer.from(signature, options.asymmetricSignatureEncoding),
754
+ );
755
+ };
756
+
757
+ export const safeEqual = (input, expected) => {
758
+ const bufferInput = Buffer.from(input);
759
+ const bufferExpected = Buffer.from(expected);
760
+ return (
761
+ bufferInput.length === bufferExpected.length &&
762
+ timingSafeEqual(bufferInput, bufferExpected)
763
+ );
764
+ };
package/package.json CHANGED
@@ -1,55 +1,55 @@
1
1
  {
2
- "name": "@1auth/crypto",
3
- "version": "0.0.0-alpha.9",
4
- "description": "",
5
- "type": "module",
6
- "engines": {
7
- "node": ">=16"
8
- },
9
- "engineStrict": true,
10
- "publishConfig": {
11
- "access": "public"
12
- },
13
- "main": "./index.js",
14
- "module": "./index.js",
15
- "exports": {
16
- ".": {
17
- "import": {
18
- "types": "./index.d.ts",
19
- "default": "./index.js"
20
- }
21
- }
22
- },
23
- "types": "index.d.ts",
24
- "files": [
25
- "index.js",
26
- "index.d.ts"
27
- ],
28
- "scripts": {
29
- "test": "npm run test:unit",
30
- "test:unit": "ava"
31
- },
32
- "license": "MIT",
33
- "funding": {
34
- "type": "github",
35
- "url": "https://github.com/sponsors/willfarrell"
36
- },
37
- "keywords": [],
38
- "author": {
39
- "name": "1auth contributors",
40
- "url": "https://github.com/willfarrell/1auth/graphs/contributors"
41
- },
42
- "repository": {
43
- "type": "git",
44
- "url": "github:willfarrell/1auth",
45
- "directory": "packages/crypto"
46
- },
47
- "bugs": {
48
- "url": "https://github.com/willfarrell/1auth/issues"
49
- },
50
- "homepage": "https://github.com/willfarrell/1auth",
51
- "gitHead": "d21e1013f55ed05af4daf980bc4dfdfd52538792",
52
- "dependencies": {
53
- "@node-rs/argon2": "1.5.0"
54
- }
2
+ "name": "@1auth/crypto",
3
+ "version": "0.0.0-beta.1",
4
+ "description": "",
5
+ "type": "module",
6
+ "engines": {
7
+ "node": ">=24"
8
+ },
9
+ "engineStrict": true,
10
+ "publishConfig": {
11
+ "access": "public"
12
+ },
13
+ "main": "./index.js",
14
+ "module": "./index.js",
15
+ "exports": {
16
+ ".": {
17
+ "import": {
18
+ "types": "./index.d.ts",
19
+ "default": "./index.js"
20
+ }
21
+ }
22
+ },
23
+ "types": "index.d.ts",
24
+ "files": [
25
+ "index.js",
26
+ "index.d.ts"
27
+ ],
28
+ "scripts": {
29
+ "test": "npm run test:unit",
30
+ "test:unit": "node --test"
31
+ },
32
+ "license": "MIT",
33
+ "funding": {
34
+ "type": "github",
35
+ "url": "https://github.com/sponsors/willfarrell"
36
+ },
37
+ "keywords": [],
38
+ "author": {
39
+ "name": "1auth contributors",
40
+ "url": "https://github.com/willfarrell/1auth/graphs/contributors"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/willfarrell/1auth.git",
45
+ "directory": "packages/crypto"
46
+ },
47
+ "bugs": {
48
+ "url": "https://github.com/willfarrell/1auth/issues"
49
+ },
50
+ "homepage": "https://github.com/willfarrell/1auth",
51
+ "gitHead": "7a6c0fbb8ab71d6a2171e678697de9f237568431",
52
+ "dependencies": {
53
+ "nanoid": "5.1.6"
54
+ }
55
55
  }
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2023 will Farrell
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.