Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature 837 subframework for encrypting data at rest. #3105

Merged
merged 15 commits into from
May 7, 2024

Conversation

Jeeppler
Copy link
Member

@Jeeppler Jeeppler commented Apr 27, 2024

Implements a sub-framework for encrypting data at-rest.

It is designed to encrypt text data which needs to be stored into a persistent storage (data base, object storage, file etc.).

The algorithms used fulfill the following requirements:

  • protect both confidentiality and integrity
  • are nonce misuse-resistant

Allows to rotate:

  • initialization vectors (nonces)
  • secrets
  • ciphers

HINT: The actual database encryption as described in #837 and #838 is not implemented.

Jeeppler and others added 14 commits November 12, 2021 10:22
- Fix typo in CryptoAccess
- Upgrade tests to Junit 5
- Add Bouncy Castle crypto provider as dependency #837 #838
- AES-GCM-SIV encryption using
- None encryption
- added Base64 string class
- improved documentation
- upgraded BouncyCastle
- changed interfaces using Base64 string class
- Introduce BinaryString interface
- Implemented three BinaryString types: Base64String, HexString and PlainString
- Added AES GCM SIV 192 as potential algorithm
- Improved tests
- Small improvements
- implemented rotation tests
- improved tests
- fixed detected problems
- improved the documentation

closes #837
@lorriborri lorriborri requested a review from winzj May 7, 2024 06:06
Copy link
Member

@lorriborri lorriborri left a comment

Choose a reason for hiding this comment

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

Looks good to me 🌟 Good work 👍
I've found some optional Issues

Copy link
Member

@winzj winzj left a comment

Choose a reason for hiding this comment

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

Looking good to me 👍

I just have some minor optional requests for changes, please have a look at the comments.

@Jeeppler Jeeppler merged commit 14862ef into develop May 7, 2024
1 check passed
@Jeeppler Jeeppler deleted the feature-837-encrypt-sechub-configuration-in-db branch May 7, 2024 15:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Provide a subframework to encrypt data at rest
3 participants