Skip to content

Conversation

@antoinelochet
Copy link
Contributor

Here is my proposed fix for issue 723

@antoinelochet antoinelochet changed the title #723 - Fixed use of ECB with Botan Fix issue 723 - Fixed use of ECB with Botan Sep 1, 2023
Copy link
Contributor

@bjosv bjosv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems reasonable.
Are all the extra debug printouts needed? I seems that existing printouts are quite sparse with information, maybe for security reasons(?).

As an addition I suggest that we also disable 2 testcases when built WITH_BOTAN.
They will always fail when using Botan as I understand it. WDYT?

1) test: AESTests::testECB (F) line: 518 AESTests.cpp
assertion failed
- Expression: aes->encryptInit(&aesKey128, SymMode::ECB, IV)


2) test: DESTests::testECB (F) line: 537 DESTests.cpp
assertion failed
- Expression: des->encryptInit(&desKey56, SymMode::ECB, IV)

@antoinelochet
Copy link
Contributor Author

antoinelochet commented Jan 16, 2024

I think that you are right about the tests.

I have added the debug logs because they are often useful. I agree that some security reasons, it may seem bad, but:

  • using SoftHSM in production is madness
  • using SoftHSM in production WITH debug logs is beyond madness

So I thought this was tolerable. But per your request, I deleted all the offending lines.

Copy link
Contributor

@bjosv bjosv left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good comments. Using debug logs in production would be "beyond madness" :)

@bjosv bjosv mentioned this pull request Jan 18, 2024
@anpa8480
Copy link

anpa8480 commented Jun 21, 2024

if you revert BotanSymmetricAlgorithm.cpp 8fd89ec and uncomment if (mode == SymMode::ECB) all tests are passing.

Tested with Botan 2.19.3
image

@antoinelochet
Copy link
Contributor Author

if you revert BotanSymmetricAlgorithm.cpp 8fd89ec and uncomment if (mode == SymMode::ECB) all tests are passing.

Tested with Botan 2.19.3 image

That's because ECB is not taken into account during compilation phase. It does not fix the failing tests in src/lib

@anpa8480
Copy link

anpa8480 commented Jun 21, 2024

if you revert BotanSymmetricAlgorithm.cpp 8fd89ec and uncomment if (mode == SymMode::ECB) all tests are passing.
Tested with Botan 2.19.3 image

That's because ECB is not taken into account during compilation phase. It does not fix the failing tests in src/lib

Sorry I dont understand what do you mean "ECB is not taken into account". You mean because Botan_ecb.cpp is missing in CMakelists.txt? The test was performed with dev branch and not with fix-botan-ecb

@jschlyter jschlyter linked an issue Nov 29, 2024 that may be closed by this pull request
@jschlyter jschlyter changed the title Fix issue 723 - Fixed use of ECB with Botan Fixed use of ECB with Botan Nov 29, 2024
@jschlyter jschlyter added the bug Some isn't right label Nov 29, 2024
@antoinelochet antoinelochet requested a review from a team as a code owner November 29, 2024 13:46
@antoinelochet antoinelochet marked this pull request as draft November 29, 2024 14:42
@antoinelochet
Copy link
Contributor Author

antoinelochet commented Nov 29, 2024

I will close this PR when #771 is merged since it does a better job than this.

@antoinelochet
Copy link
Contributor Author

#771 is merged

@antoinelochet antoinelochet deleted the fix-botan-ecb branch November 29, 2024 16:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

bug Some isn't right

Projects

None yet

Development

Successfully merging this pull request may close these issues.

ECB is not supported by Botan

5 participants