We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f396de commit d200198Copy full SHA for d200198
2 files changed
WolfSSLEVP.js
@@ -17,7 +17,7 @@ var __extends = (this && this.__extends) || (function () {
17
exports.__esModule = true;
18
exports.WolfSSLDecryptionStream = exports.WolfSSLEncryptionStream = exports.WolfSSLDecryptor = exports.WolfSSLEncryptor = void 0;
19
var wolfcrypt = require('./build/Release/wolfcrypt');
20
-var stream = require('node:stream');
+var stream = require('stream');
21
var WolfSSLEVP = /** @class */ (function () {
22
function WolfSSLEVP() {
23
this.evp = Buffer.alloc(wolfcrypt.sizeof_EVP_CIPHER_CTX());
WolfSSLEVP.ts
@@ -1,5 +1,5 @@
1
const wolfcrypt = require( './build/Release/wolfcrypt' );
2
-const stream = require( 'node:stream' );
+const stream = require( 'stream' );
3
4
class WolfSSLEVP {
5
protected evp: Buffer
0 commit comments