[java-opensaml] branch dev/OSJ-82 updated (0b6c403a2 -> c56b4119a)
Brent Putman
putmanb at georgetown.edu
Thu Jan 21 21:33:20 UTC 2021
This is an automated email from the git hooks/post-receive script.
putmanb pushed a change to branch dev/OSJ-82
in repository java-opensaml.
discards 0b6c403a2 KeyDerivation API must account for algorithm URIs without key length.
discards 42a2aa461 KeyInfo support for KeyAgreementCredential.
discards 84dde833f Finish out ConcatKDF and PBKDF2 implementations.
discards 3e85e3516 Config-oriented params should be initializable, so can't be changed.
discards ca31cd1c3 Some configurable key agreement parameters need to be cloneable
discards 8e4c74b0c Change APIs to use algorithm URI rather then JCA key algorithm + length
discards 662f11fac Exception message typo.
discards af9dd7c03 Make a copy of KeyAgreementParameters so can be modified internally
discards bc01c2e21 Key agreement components must account for both encryption and decryption
discards 6b9de37ab Basic framework classes for key agreement processing, incl ECDH impl.
discards 6a7e6c731 Additional base crypto support for ECDH operations.
discards dd0dc1cda Additional XML Encryption 1.1 XMLObject providers.
discards bd343ec29 Additional constants and algorithm descriptors from XML Encryption 1.1.
adds dbd431afb Add clock skew support.
adds a3a9d3c01 Add interface for "generic" assertion validation as extension point.
new de802dd28 Additional constants and algorithm descriptors from XML Encryption 1.1.
new a61e92b9b Additional XML Encryption 1.1 XMLObject providers.
new c26e5c1dc Additional base crypto support for ECDH operations.
new fc17204e2 Basic framework classes for key agreement processing, incl ECDH impl.
new eb6615278 Key agreement components must account for both encryption and decryption
new be2234936 Make a copy of KeyAgreementParameters so can be modified internally
new 56e4094c1 Exception message typo.
new 84983d139 Change APIs to use algorithm URI rather then JCA key algorithm + length
new 63246c481 Some configurable key agreement parameters need to be cloneable
new 915530832 Config-oriented params should be initializable, so can't be changed.
new 938b4e252 Finish out ConcatKDF and PBKDF2 implementations.
new 302408c8b KeyInfo support for KeyAgreementCredential.
new 6da9b7029 KeyDerivation API must account for algorithm URIs without key length.
new eece3008a OSJ-75: Implement EC support for derivePublicKey in KeySupport
new c56b4119a OSJ-118: Implement PublicKey <-> ECKeyValue in KeyInfoSupport
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (0b6c403a2)
\
N -- N -- N refs/heads/dev/OSJ-82 (c56b4119a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omits" are not gone; other references still
refer to them. Any revisions marked "discards" are gone forever.
The 15 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
...itionValidator.java => AssertionValidator.java} | 29 ++-
.../saml/saml2/assertion/ConditionValidator.java | 4 +-
.../saml2/assertion/SAML20AssertionValidator.java | 61 +++++-
.../saml/saml2/assertion/StatementValidator.java | 4 +-
.../assertion/SubjectConfirmationValidator.java | 5 +-
.../DefaultAssertionValidationContextBuilder.java | 121 +++++++----
opensaml-security-api/pom.xml | 8 +
.../GlobalNamedCurveRegistryInitializer.java | 67 ++++++
.../opensaml/security}/config/package-info.java | 2 +-
.../org/opensaml/security/crypto/KeySupport.java | 20 +-
.../org/opensaml/security/crypto/ec/ECSupport.java | 224 ++++++++++++++++++++-
.../crypto/ec/EnhancedECParameterSpec.java | 82 ++++++++
.../opensaml/security/crypto/ec/NamedCurve.java | 50 +++--
.../security/crypto/ec/NamedCurveRegistry.java | 222 ++++++++++++++++++++
.../crypto/ec/curves/AbstractNamedCurve.java | 120 +++++++++++
.../security/crypto/ec/curves/Secp256r1.java | 20 +-
.../security/crypto/ec/curves/Secp384r1.java | 20 +-
.../security/crypto/ec/curves/Secp521r1.java | 20 +-
.../security/crypto/ec/curves}/package-info.java | 4 +-
.../opensaml/security/crypto/ec}/package-info.java | 7 +-
.../services/org.opensaml.core.config.Initializer | 1 +
.../org.opensaml.security.crypto.ec.NamedCurve | 3 +
.../opensaml/security/crypto/KeySupportTest.java | 9 +-
.../security/crypto/ec/BaseNamedCurveTest.java | 27 ++-
.../opensaml/security/crypto/ec/ECSupportTest.java | 56 +++++-
.../crypto/ec/EnhancedECParameterSpecTest.java | 69 +++++++
.../security/crypto/ec/NamedCurveRegistryTest.java | 163 +++++++++++++++
.../security/crypto/ec/curves/NamedCurvesTest.java | 75 +++++++
.../opensaml/xmlsec/keyinfo/KeyInfoSupport.java | 109 +++++++++-
.../impl/KeyAgreementKeyInfoGeneratorFactory.java | 11 +-
...yValueProvider.java => ECKeyValueProvider.java} | 44 ++--
.../{RSAKeyValueTest.java => ECKeyValueTest.java} | 38 ++--
.../impl/KeyAgreementKeyInfoGeneratorTest.java | 28 ++-
.../xmlsec/keyinfo/tests/KeyInfoSupportTest.java | 208 ++++++++++++++++++-
.../opensaml/xmlsec/keyinfo/impl/ECKeyValue.xml | 11 +
35 files changed, 1700 insertions(+), 242 deletions(-)
copy opensaml-saml-api/src/main/java/org/opensaml/saml/saml2/assertion/{ConditionValidator.java => AssertionValidator.java} (66%)
create mode 100644 opensaml-security-api/src/main/java/org/opensaml/security/config/GlobalNamedCurveRegistryInitializer.java
copy {opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec => opensaml-security-api/src/main/java/org/opensaml/security}/config/package-info.java (95%)
create mode 100644 opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/EnhancedECParameterSpec.java
copy opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/agreement/KeyAgreementCredential.java => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/NamedCurve.java (50%)
create mode 100644 opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/NamedCurveRegistry.java
create mode 100644 opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/curves/AbstractNamedCurve.java
copy opensaml-core/src/main/java/org/opensaml/core/xml/persist/impl/PassthroughSourceStrategy.java => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/curves/Secp256r1.java (71%)
copy opensaml-core/src/main/java/org/opensaml/core/xml/persist/impl/PassthroughSourceStrategy.java => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/curves/Secp384r1.java (71%)
copy opensaml-core/src/main/java/org/opensaml/core/xml/persist/impl/PassthroughSourceStrategy.java => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/curves/Secp521r1.java (71%)
copy {opensaml-core/src/main/java/org/opensaml/core/criterion => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec/curves}/package-info.java (83%)
copy {opensaml-core/src/main/java/org/opensaml/core/metrics => opensaml-security-api/src/main/java/org/opensaml/security/crypto/ec}/package-info.java (90%)
create mode 100644 opensaml-security-api/src/main/resources/META-INF/services/org.opensaml.core.config.Initializer
create mode 100644 opensaml-security-api/src/main/resources/META-INF/services/org.opensaml.security.crypto.ec.NamedCurve
copy opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/encryption/impl/MGFImpl.java => opensaml-security-api/src/test/java/org/opensaml/security/crypto/ec/BaseNamedCurveTest.java (62%)
create mode 100644 opensaml-security-api/src/test/java/org/opensaml/security/crypto/ec/EnhancedECParameterSpecTest.java
create mode 100644 opensaml-security-api/src/test/java/org/opensaml/security/crypto/ec/NamedCurveRegistryTest.java
create mode 100644 opensaml-security-api/src/test/java/org/opensaml/security/crypto/ec/curves/NamedCurvesTest.java
copy opensaml-xmlsec-impl/src/main/java/org/opensaml/xmlsec/keyinfo/impl/provider/{RSAKeyValueProvider.java => ECKeyValueProvider.java} (74%)
copy opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/keyinfo/impl/{RSAKeyValueTest.java => ECKeyValueTest.java} (78%)
create mode 100644 opensaml-xmlsec-impl/src/test/resources/org/opensaml/xmlsec/keyinfo/impl/ECKeyValue.xml
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list