|
| 1 | +import crypto from 'node:crypto' |
| 2 | +import { newInstance, ChaCha20Poly1305 } from '@chainsafe/as-chacha20poly1305' |
| 3 | +import { digest } from '@chainsafe/as-sha256' |
| 4 | +import { isElectronMain } from 'wherearewe' |
| 5 | +import { pureJsCrypto } from './js.js' |
| 6 | +import type { ICryptoInterface } from '../crypto.js' |
| 7 | + |
| 8 | +const ctx = newInstance() |
| 9 | +const asImpl = new ChaCha20Poly1305(ctx) |
| 10 | +const CHACHA_POLY1305 = 'chacha20-poly1305' |
| 11 | +const nodeCrypto: Pick<ICryptoInterface, 'hashSHA256' | 'chaCha20Poly1305Encrypt' | 'chaCha20Poly1305Decrypt'> = { |
| 12 | + hashSHA256 (data) { |
| 13 | + return crypto.createHash('sha256').update(data).digest() |
| 14 | + }, |
| 15 | + |
| 16 | + chaCha20Poly1305Encrypt (plaintext, nonce, ad, k) { |
| 17 | + const cipher = crypto.createCipheriv(CHACHA_POLY1305, k, nonce, { |
| 18 | + authTagLength: 16 |
| 19 | + }) |
| 20 | + cipher.setAAD(ad, { plaintextLength: plaintext.byteLength }) |
| 21 | + const updated = cipher.update(plaintext) |
| 22 | + const final = cipher.final() |
| 23 | + const tag = cipher.getAuthTag() |
| 24 | + |
| 25 | + const encrypted = Buffer.concat([updated, tag, final], updated.byteLength + tag.byteLength + final.byteLength) |
| 26 | + return encrypted |
| 27 | + }, |
| 28 | + |
| 29 | + chaCha20Poly1305Decrypt (ciphertext, nonce, ad, k, _dst) { |
| 30 | + const authTag = ciphertext.subarray(ciphertext.length - 16) |
| 31 | + const text = ciphertext.subarray(0, ciphertext.length - 16) |
| 32 | + const decipher = crypto.createDecipheriv(CHACHA_POLY1305, k, nonce, { |
| 33 | + authTagLength: 16 |
| 34 | + }) |
| 35 | + decipher.setAAD(ad, { |
| 36 | + plaintextLength: text.byteLength |
| 37 | + }) |
| 38 | + decipher.setAuthTag(authTag) |
| 39 | + const updated = decipher.update(text) |
| 40 | + const final = decipher.final() |
| 41 | + if (final.byteLength > 0) { |
| 42 | + return Buffer.concat([updated, final], updated.byteLength + final.byteLength) |
| 43 | + } |
| 44 | + return updated |
| 45 | + } |
| 46 | +} |
| 47 | + |
| 48 | +const asCrypto: Pick<ICryptoInterface, 'hashSHA256' | 'chaCha20Poly1305Encrypt' | 'chaCha20Poly1305Decrypt'> = { |
| 49 | + hashSHA256 (data) { |
| 50 | + return digest(data) |
| 51 | + }, |
| 52 | + chaCha20Poly1305Encrypt (plaintext, nonce, ad, k) { |
| 53 | + return asImpl.seal(k, nonce, plaintext, ad) |
| 54 | + }, |
| 55 | + chaCha20Poly1305Decrypt (ciphertext, nonce, ad, k, dst) { |
| 56 | + return asImpl.open(k, nonce, ciphertext, ad, dst) |
| 57 | + } |
| 58 | +} |
| 59 | + |
| 60 | +// benchmarks show that for chacha20poly1305 |
| 61 | +// the as implementation is faster for smaller payloads(<1200) |
| 62 | +// and the node implementation is faster for larger payloads |
| 63 | +export const defaultCrypto: ICryptoInterface = { |
| 64 | + ...pureJsCrypto, |
| 65 | + hashSHA256 (data) { |
| 66 | + return nodeCrypto.hashSHA256(data) |
| 67 | + }, |
| 68 | + chaCha20Poly1305Encrypt (plaintext, nonce, ad, k) { |
| 69 | + if (plaintext.length < 1200) { |
| 70 | + return asCrypto.chaCha20Poly1305Encrypt(plaintext, nonce, ad, k) |
| 71 | + } |
| 72 | + return nodeCrypto.chaCha20Poly1305Encrypt(plaintext, nonce, ad, k) |
| 73 | + }, |
| 74 | + chaCha20Poly1305Decrypt (ciphertext, nonce, ad, k, dst) { |
| 75 | + if (ciphertext.length < 1200) { |
| 76 | + return asCrypto.chaCha20Poly1305Decrypt(ciphertext, nonce, ad, k, dst) |
| 77 | + } |
| 78 | + return nodeCrypto.chaCha20Poly1305Decrypt(ciphertext, nonce, ad, k, dst) |
| 79 | + } |
| 80 | +} |
| 81 | + |
| 82 | +// no chacha20-poly1305 in electron https://github.com/electron/electron/issues/24024 |
| 83 | +if (isElectronMain) { |
| 84 | + defaultCrypto.chaCha20Poly1305Encrypt = asCrypto.chaCha20Poly1305Encrypt |
| 85 | + defaultCrypto.chaCha20Poly1305Decrypt = asCrypto.chaCha20Poly1305Decrypt |
| 86 | +} |
0 commit comments