Skip to content

OIDC.Keyset

Scott Cantor edited this page Feb 18, 2021 · 7 revisions

Current File(s): conf/credentials-oidc.xml

Overview

The OIDC.Keyset profile configuration bean enables support for publishing credentials as a keyset. The credentials to be published are in defined in credentials-oidc.xml, by default the credentials used by default security configuration.

Activation

The following example enables this profile for clients to access it in this server's /idp/profile/oidc/keyset -endpoint. This example must be applied in the conf/relying-party.xml.

<bean id="shibboleth.UnverifiedRelyingParty" parent="RelyingParty">
    <property name="profileConfigurations">
        <list>
            ... 
            <bean parent="OIDC.Keyset" />
            ...
        </list>
    </property>
</bean>

(Migrated)