Make negotiated group in SecurityParameters available from SSLEngine - #2215
Open
theobisproject wants to merge 2822 commits into
Open
Make negotiated group in SecurityParameters available from SSLEngine#2215theobisproject wants to merge 2822 commits into
theobisproject wants to merge 2822 commits into
Conversation
Ascon update See merge request root/bc-java!113
Add java doc for CMSAuthEnvelopedDataParser and CMSAuthEnvelopedDataStreamGenerator See merge request root/bc-java!116
Fix Issue bcgit#2103 See merge request root/bc-java!112
- see draft-ietf-tls-mldsa-00
… runeflobakk-add-bom
Defensive changes: - Validate key length before copying to fail fast and avoid unnecessary allocation on invalid input - Add null check before zeroing chainValue in reset() - Centralize state cleanup in reset() to avoid double-zeroing and ensure consistent cleanup path Code quality: - Use explicit 64-bit literals for long fields (f1) for clarity - Add final modifier to ROUNDS constant - Remove redundant return statement Minor fixes: - Fix typo in Javadoc (Blakbe2b -> Blake2b) - Use more efficient Pack.longToLittleEndian overload for partial digest output, avoiding intermediate byte[] allocation
…seeds by removing the conditions.
added editor class for signed data streams with digest editing capability - relates to github bcgit#1965
Fix the issue of XMSSPrivateKeyParameters when try to build BDS with seeds by... See merge request root/bc-java!121
… and sourceCompatibility, as options.release does not work.
…ck RSA algorithms.
update build.gradle in prov for java 17, by using targetCompatibility and... See merge request root/bc-java!122
…e in another branch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
As mentioned in #2117 I would like to access the information about the negotiated group of a TLS connection from a SSLEngine.
Don't know if this is the best design for the API to achieve this or a more general method should be preferred which can be extended for future use cases.