Revert #857 for now
Travis CI fails "deep tests" of DLIES with #857 applied. Let's revert it for now and get back to ```c++ cipherKey = key + MAC::DEDAULT_KEYLENGTH; ``` and see if it improves the situation.pull/867/head
parent
eeb7dadc76
commit
5d0ceb3b04
|
|
@ -716,7 +716,8 @@ public:
|
|||
if (DHAES_MODE)
|
||||
{
|
||||
macKey = key;
|
||||
cipherKey = key + MAC::DIGESTSIZE;
|
||||
//cipherKey = key + MAC::DIGESTSIZE;
|
||||
cipherKey = key + MAC::DEDAULT_KEYLENGTH;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
@ -748,7 +749,8 @@ public:
|
|||
if (DHAES_MODE)
|
||||
{
|
||||
macKey = key;
|
||||
cipherKey = key + MAC::DIGESTSIZE;
|
||||
//cipherKey = key + MAC::DIGESTSIZE;
|
||||
cipherKey = key + MAC::DEDAULT_KEYLENGTH;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue