We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a2dd9a commit 5ae5c03Copy full SHA for 5ae5c03
modules/decrypt-node/src/decrypt.ts
@@ -46,9 +46,6 @@ export async function decrypt (
46
stream
47
.once('MessageHeader', (header: MessageHeader) => { messageHeader = header })
48
.on('data', (chunk: Buffer) => plaintext.push(chunk))
49
- .on('error', () => {
50
- console.log('wtf???')
51
- })
52
53
// This will check both Uint8Array|Buffer
54
if (ciphertext instanceof Uint8Array) {
modules/decrypt-node/src/decrypt_stream.ts
@@ -46,10 +46,6 @@ export function decryptStream (
pipeline(parseHeaderStream, verifyStream, decipherStream)
- decipherStream.on('error', (e) => {
- console.log('?????', e)
-
const stream = new Duplexify(parseHeaderStream, decipherStream)
55
// Forward header events
0 commit comments