Skip to content

Commit d200198

Browse files
author
John Bland
committed
switched to other stream package name
1 parent 6f396de commit d200198

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

WolfSSLEVP.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var __extends = (this && this.__extends) || (function () {
1717
exports.__esModule = true;
1818
exports.WolfSSLDecryptionStream = exports.WolfSSLEncryptionStream = exports.WolfSSLDecryptor = exports.WolfSSLEncryptor = void 0;
1919
var wolfcrypt = require('./build/Release/wolfcrypt');
20-
var stream = require('node:stream');
20+
var stream = require('stream');
2121
var WolfSSLEVP = /** @class */ (function () {
2222
function WolfSSLEVP() {
2323
this.evp = Buffer.alloc(wolfcrypt.sizeof_EVP_CIPHER_CTX());

WolfSSLEVP.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const wolfcrypt = require( './build/Release/wolfcrypt' );
2-
const stream = require( 'node:stream' );
2+
const stream = require( 'stream' );
33

44
class WolfSSLEVP {
55
protected evp: Buffer

0 commit comments

Comments
 (0)