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

New approach for discrete logarithm keys #3210

Merged
merged 1 commit into from
Mar 6, 2023
Merged

Conversation

randombit
Copy link
Owner

Removes the DL_Scheme_PublicKey and DL_Scheme_PrivateKey classes, replaced by inner members

@codecov-commenter
Copy link

codecov-commenter commented Jan 22, 2023

Codecov Report

Patch coverage: 95.46% and no project coverage change

Comparison is base (60cc185) 88.15% compared to head (fa06199) 88.15%.

📣 This organization is not using Codecov’s GitHub App Integration. We recommend you install it so Codecov can continue to function properly for your repositories. Learn more

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #3210   +/-   ##
=======================================
  Coverage   88.15%   88.15%           
=======================================
  Files         615      615           
  Lines       69986    70084   +98     
  Branches     6948     6944    -4     
=======================================
+ Hits        61697    61784   +87     
- Misses       5389     5403   +14     
+ Partials     2900     2897    -3     
Impacted Files Coverage Δ
src/lib/tls/tls13/tls_extensions_key_share.cpp 84.57% <ø> (ø)
src/lib/tls/tls_callbacks.cpp 74.68% <ø> (ø)
src/lib/pubkey/elgamal/elgamal.cpp 88.29% <92.64%> (+3.36%) ⬆️
src/lib/pubkey/dsa/dsa.cpp 86.48% <92.95%> (+4.19%) ⬆️
src/lib/pubkey/dl_algo/dl_scheme.cpp 96.15% <96.15%> (ø)
src/lib/pubkey/dh/dh.cpp 97.10% <98.03%> (+6.90%) ⬆️
src/lib/ffi/ffi_pkey_algs.cpp 90.37% <100.00%> (-0.10%) ⬇️
src/lib/pubkey/dl_group/dl_group.cpp 83.62% <100.00%> (-1.16%) ⬇️
src/lib/pubkey/pk_algs.cpp 83.44% <100.00%> (+0.11%) ⬆️
src/lib/tls/tls12/msg_server_kex.cpp 85.29% <100.00%> (-0.15%) ⬇️
... and 17 more

Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here.

☔ View full report at Codecov.
📢 Do you have feedback about the report comment? Let us know in this issue.

@randombit randombit added this to the Botan 3.0.0 milestone Jan 31, 2023
@randombit randombit force-pushed the jack/dl-key-struct branch 2 times, most recently from b30ddba to 32ec218 Compare March 5, 2023 15:03
@randombit randombit mentioned this pull request Mar 5, 2023
29 tasks
@randombit randombit force-pushed the jack/dl-key-struct branch from 32ec218 to 7924f61 Compare March 5, 2023 15:36
Removes the DL_Scheme_PublicKey and DL_Scheme_PrivateKey classes,
replaced by inner members
@randombit randombit force-pushed the jack/dl-key-struct branch from 7924f61 to fa06199 Compare March 5, 2023 15:41
@randombit randombit merged commit 30c8c01 into master Mar 6, 2023
@randombit randombit deleted the jack/dl-key-struct branch March 6, 2023 13:24
@randombit randombit mentioned this pull request Mar 16, 2023
randombit added a commit that referenced this pull request Jul 12, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 12, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 12, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 14, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 14, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 14, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 22, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 22, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 23, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 23, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027
randombit added a commit that referenced this pull request Jul 23, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027

Co-Authored-By: René Meusel <[email protected]>
randombit added a commit that referenced this pull request Jul 23, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027

Co-Authored-By: René Meusel <[email protected]>
randombit added a commit that referenced this pull request Jul 24, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027

Co-Authored-By: René Meusel <[email protected]>
randombit added a commit that referenced this pull request Jul 24, 2024
This is analagous to the DL scheme key types added in #3210, but here
we have to retain the existing classes as we are constrained by SemVer.

The new types contain both our old types (BigInt, EC_Point) and new types
(EC_Scalar, EC_AffinePoint). Eventually the legacy types will be removed,
but we can't do that until the next major version. GH #4027

Co-Authored-By: René Meusel <[email protected]>
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.

2 participants