Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

OpenSSL EVP API Fix (ECB mode failing) #1997

Closed
wants to merge 8 commits into from
Prev Previous commit
Next Next commit
Add bug # to test case for future reference.
  • Loading branch information
KiNgMaR committed Nov 29, 2011
commit bf2cdfda8d8d8122fccde88444459581632b9794
2 changes: 1 addition & 1 deletion test/simple/test-crypto-ecb.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ try {
}

// Testing whether EVP_CipherInit_ex is functioning correctly.
// Reference: bug#1997

(function()
{
Expand All @@ -49,4 +50,3 @@ try {
msg += decrypt.final('ascii');
assert.equal(msg, 'Hello World!');
}());