[java-idp-plugin-webauthn] branch main updated (2c6e52b -> ab66078)

Phil Smart philip.smart at jisc.ac.uk
Fri Nov 8 16:24:43 UTC 2024


This is an automated email from the git hooks/post-receive script.

philsmart pushed a change to branch main
in repository java-idp-plugin-webauthn.

    from 2c6e52b  Remove extra space from message properties
     new ced1ec9  JWEBAUTHN-27 - Add basic authenticator policy
     new d1c2c36  Improve properties files and split metadata into its own
     new 9829c2c  Improve XML config files
     new ab66078  Cleanup and simplify XML config files

The 4 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../policy/AuthenticatorCapabilitiesInspector.java |  47 --------
 .../authn/webauthn/policy/CredentialPolicy.java    |   4 +-
 .../authn/webauthn/storage/CredentialRecord.java   |  45 --------
 .../impl/AdminSearchCredentialsLookupFunction.java |  48 ++++++++
 .../impl/AttachAuthenticatorCapabilities.java      | 124 ---------------------
 .../impl/AuthenticatorCapabilitiesLabeller.java    |  89 ---------------
 ...torPolicy.java => CheckRegistrationPolicy.java} |  10 +-
 ...stingRegistrationCredentialsLookupStrategy.java |  49 ++++++++
 .../admin/impl/LabelAdminCredentialRecords.java    |  90 ---------------
 .../admin/impl/LabelCredentialRecords.java         |  41 +++++--
 .../admin/impl/LookupCredentialsForUser.java       |  24 +---
 .../SecondFactorOnlyCredentialLabeller.java}       |  66 +++++++----
 .../admin/impl/StorePublicKeyCredential.java       |   1 -
 ...AbstractAuthenticatorCapabilitiesInspector.java | 121 --------------------
 ...ChainingAuthenticatorCapabilitiesInspector.java |  89 ---------------
 .../impl/FunctionalAuthenticatorInspectorRule.java |  69 ------------
 .../webauthn/impl/AbstractWebAuthnAction.java      |  33 ++++++
 .../authn/webauthn/impl/CheckCredentialPolicy.java |  23 +++-
 ...ingAuthenticationCredentialsLookupStrategy.java |  53 +++++++++
 .../webauthn/impl/LookupRegisteredCredentials.java |  21 +---
 .../LookupRegisteredCredentialsFromUserHandle.java |   9 +-
 .../policy/impl/AbstractCredentialPolicyRule.java  |  10 +-
 .../policy/impl/ChainingCredentialPolicyRule.java  |  12 +-
 .../impl/FunctionalCredentialPolicyRule.java       |   8 +-
 .../impl/SecondFactorOnlyCredentialPolicyRule.java |  73 +++++++++---
 .../webauthn-management-beans.xml                  |  18 ++-
 .../webauthn-registration-beans.xml                |  45 +++-----
 .../webauthn-registration-flow.xml                 |   3 +-
 .../authn/WebAuthn/webauthn-abstract-beans.xml     |   9 +-
 .../idp/flows/authn/WebAuthn/webauthn-beans.xml    |   2 +-
 .../authn/webauthn/conf/authn/webauthn-config.xml  |  13 ++-
 .../conf/authn/webauthn-management-config.xml      |  23 +---
 .../conf/authn/webauthn-metadata.properties        |  19 ++++
 .../conf/authn/webauthn-registration-config.xml    |  40 ++-----
 .../conf/authn/webauthn-registration.properties    |  41 +------
 .../authn/webauthn/conf/authn/webauthn.properties  |   4 +-
 .../idp/plugin/authn/webauthn/module.properties    |  62 ++++++-----
 .../admin/impl/CheckAuthenticatorPolicyTest.java   |   6 +-
 .../webauthn/flow/AbstractWebAuthnFlowTest.java    |  22 +---
 .../webauthn/flow/TestAdminManagementFlow.java     |   3 +-
 .../authn/webauthn/flow/TestPasswordlessFlow.java  |   3 +-
 .../authn/webauthn/flow/TestRegistrationFlow.java  |   3 +-
 .../authn/webauthn/flow/TestSecondFactorFlow.java  |   3 +-
 .../authn/webauthn/flow/TestUsernameslessFlow.java |   3 +-
 .../flow/TestUsernameslessFlowWithPolicy.java      |   9 +-
 ...essWithPolicyApplicationContextInitializer.java |   4 +-
 .../authn/webauthn/impl/AbstractWebAuthnTest.java  |  14 ---
 .../impl/ChainingCredentialPolicyRuleTest.java     |  24 ++--
 .../SecondFactorOnlyCredentialPolicyRuleTest.java  |  67 -----------
 .../webauthn/storage/impl/MockAuthenticator.java   |   5 +-
 .../authn/webauthn/test-beans-authentication.xml   |  14 +--
 .../authn/webauthn/test-beans-registration.xml     |  30 -----
 ...est-beans-authentication.xml => test-beans.xml} |  24 ++--
 53 files changed, 539 insertions(+), 1133 deletions(-)
 delete mode 100644 webauthn-api/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/policy/AuthenticatorCapabilitiesInspector.java
 create mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/AdminSearchCredentialsLookupFunction.java
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/AttachAuthenticatorCapabilities.java
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/AuthenticatorCapabilitiesLabeller.java
 rename webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/{CheckAuthenticatorPolicy.java => CheckRegistrationPolicy.java} (94%)
 create mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/ExistingRegistrationCredentialsLookupStrategy.java
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/impl/LabelAdminCredentialRecords.java
 rename webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/{policy/impl/SecondFactorOnlyAuthenticatorInspector.java => impl/SecondFactorOnlyCredentialLabeller.java} (58%)
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/policy/impl/AbstractAuthenticatorCapabilitiesInspector.java
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/policy/impl/ChainingAuthenticatorCapabilitiesInspector.java
 delete mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/admin/policy/impl/FunctionalAuthenticatorInspectorRule.java
 create mode 100644 webauthn-impl/src/main/java/net/shibboleth/idp/plugin/authn/webauthn/impl/ExistingAuthenticationCredentialsLookupStrategy.java
 create mode 100644 webauthn-impl/src/main/resources/net/shibboleth/idp/plugin/authn/webauthn/conf/authn/webauthn-metadata.properties
 delete mode 100644 webauthn-impl/src/test/java/net/shibboleth/idp/plugin/authn/webauthn/policy/impl/SecondFactorOnlyCredentialPolicyRuleTest.java
 copy webauthn-impl/src/test/resources/net/shibboleth/idp/plugin/authn/webauthn/{test-beans-authentication.xml => test-beans.xml} (60%)

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


More information about the commits mailing list