[java-opensaml] branch dev/OSJ-82 updated (5559b6b30 -> d4e4b86b6)

Brent Putman putmanb at georgetown.edu
Mon Mar 1 05:56:37 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  5559b6b30 Add support for auto registering all NamedCurves known to Bouncy Castle.
  discards  5a5ce0201 Add NamedCurve impls for legacy curves as defined by SunEC provider.
  discards  b4f0d5aa7 OSJ-118: Implement PublicKey <-> ECKeyValue in KeyInfoSupport
  discards  d46090e55 OSJ-75: Implement EC support for derivePublicKey in KeySupport
  discards  4440150e9 KeyDerivation API must account for algorithm URIs without key length.
  discards  e88609610 KeyInfo support for KeyAgreementCredential.
  discards  4384c9aeb Finish out ConcatKDF and PBKDF2 implementations.
  discards  de47cf538 Config-oriented params should be initializable, so can't be changed.
  discards  82572dd3b Some configurable key agreement parameters need to be cloneable
  discards  862f78d51 Change APIs to use algorithm URI rather then JCA key algorithm + length
  discards  f903104a5 Exception message typo.
  discards  af2f8db61 Make a copy of KeyAgreementParameters so can be modified internally
  discards  1c3e40fbf Key agreement components must account for both encryption and decryption
  discards  474549e2d Basic framework classes for key agreement processing, incl ECDH impl.
  discards  301d732b1 Additional base crypto support for ECDH operations.
  discards  08a4605ba Additional XML Encryption 1.1 XMLObject providers.
  discards  371e37813 Additional constants and algorithm descriptors from XML Encryption 1.1.
      adds  2043178fe JSPT-103 Review use of Java version helper methods and deprecate
      adds  5e4ddc346 JSPT-103 Review use of Java version helper methods and deprecate
       new  d2652e59e Additional constants and algorithm descriptors from XML Encryption 1.1.
       new  295ca2be1 Additional XML Encryption 1.1 XMLObject providers.
       new  25ec82097 Additional base crypto support for ECDH operations.
       new  d24563b6b Basic framework classes for key agreement processing, incl ECDH impl.
       new  07d0d4b0d Key agreement components must account for both encryption and decryption
       new  e4c5b33e4 Make a copy of KeyAgreementParameters so can be modified internally
       new  7ef2cb337 Exception message typo.
       new  c3b413f3f Change APIs to use algorithm URI rather then JCA key algorithm + length
       new  530f2f4db Some configurable key agreement parameters need to be cloneable
       new  da57d9527 Config-oriented params should be initializable, so can't be changed.
       new  6c7c73d8b Finish out ConcatKDF and PBKDF2 implementations.
       new  c416c456f KeyInfo support for KeyAgreementCredential.
       new  744837bef KeyDerivation API must account for algorithm URIs without key length.
       new  3dddcc875 OSJ-75: Implement EC support for derivePublicKey in KeySupport
       new  81a5fc923 OSJ-118: Implement PublicKey <-> ECKeyValue in KeyInfoSupport
       new  436b58052 Add NamedCurve impls for legacy curves as defined by SunEC provider.
       new  029e9b8c8 Add support for auto registering all NamedCurves known to Bouncy Castle.
       new  4dc579bb6 Add key agreement support to EncryptionParametersResolver impls
       new  d4e4b86b6 Additional tweaks and tests around general key agreement and ECDH.

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   (5559b6b30)
            \
             N -- N -- N   refs/heads/dev/OSJ-82 (d4e4b86b6)

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 19 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:
 ...etadataKeyAgreementEncryptionConfiguration.java |  77 +++++
 .../org/opensaml/saml/security}/package-info.java  |   4 +-
 .../SAMLMetadataEncryptionParametersResolver.java  | 208 +++++++++++-
 .../saml/common/testing/SAMLTestSupport.java       |   8 +-
 .../resolver/filter/impl/ScriptedFunctionTest.java |  29 +-
 .../saml/saml2/encryption/tests/ECDHTest.java      | 369 +++++++++++++++++++++
 ...MLMetadataEncryptionParametersResolverTest.java | 363 +++++++++++++++++++-
 .../src/test/resources/logback-test.xml            |   8 +
 .../saml/metadata/resolver/filter/impl/script.js   |   4 -
 .../GlobalNamedCurveRegistryInitializer.java       |  13 +-
 .../org/opensaml/security/crypto/ec/ECSupport.java |   2 -
 .../security/crypto/ec/NamedCurveRegistryTest.java |  11 +-
 .../opensaml/xmlsec/EncryptionConfiguration.java   |  10 +
 .../xmlsec/agreement/KeyAgreementSupport.java      |  82 +++++
 .../xmlsec/algorithm/AlgorithmRegistry.java        |   6 +
 .../xmlsec/algorithm/AlgorithmSupport.java         |  76 +++++
 .../KeyAgreementEncryptionConfiguration.java       |  85 +++++
 .../xmlsec/algorithm/AlgorithmRegistryTest.java    |  65 ++--
 .../xmlsec/algorithm/AlgorithmSupportTest.java     | 108 ++++++
 .../AbstractDerivationKeyAgreementProcessor.java   |   3 +
 .../impl/BasicKeyAgreementCredential.java          |   6 +
 .../DefaultSecurityConfigurationBootstrap.java     |  39 ++-
 .../opensaml/xmlsec/derivation/impl/PBKDF2.java    |   3 +-
 .../xmlsec/impl/BasicEncryptionConfiguration.java  |  24 ++
 .../impl/BasicEncryptionParametersResolver.java    | 162 ++++++++-
 .../BasicSignatureSigningParametersResolver.java   |   3 +-
 .../impl/ECDHKeyAgreementProcessorTest.java        |  14 +
 .../impl/KeyAgreementParametersParserTest.java     |   2 +-
 .../agreement/tests/KeyAgreementSupportTest.java   | 122 +++++++
 .../xmlsec/derivation/impl/PBKDF2Test.java         |   2 +-
 .../encryption/support/tests/AESGCMTest.java       |  28 +-
 .../xmlsec/encryption/support/tests/ECDHTest.java  | 237 +++++++++++++
 .../AlgorithmRuntimeSupportedPredicateTest.java    |  49 +--
 .../BasicEncryptionParametersResolverTest.java     | 200 ++++++++++-
 .../xmlsec/testing/XMLSecurityTestingSupport.java  |   8 +-
 35 files changed, 2267 insertions(+), 163 deletions(-)
 create mode 100644 opensaml-saml-api/src/main/java/org/opensaml/saml/security/SAMLMetadataKeyAgreementEncryptionConfiguration.java
 copy {opensaml-core/src/main/java/org/opensaml/core/metrics => opensaml-saml-api/src/main/java/org/opensaml/saml/security}/package-info.java (88%)
 create mode 100644 opensaml-saml-impl/src/test/java/org/opensaml/saml/saml2/encryption/tests/ECDHTest.java
 delete mode 100644 opensaml-saml-impl/src/test/resources/org/opensaml/saml/metadata/resolver/filter/impl/script.js
 create mode 100644 opensaml-xmlsec-api/src/main/java/org/opensaml/xmlsec/encryption/support/KeyAgreementEncryptionConfiguration.java
 create mode 100644 opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/agreement/tests/KeyAgreementSupportTest.java
 create mode 100644 opensaml-xmlsec-impl/src/test/java/org/opensaml/xmlsec/encryption/support/tests/ECDHTest.java

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list