protected KeyInfoCredentialContext buildCredentialContext(KeyInfoResolutionContext kiContext) {
// Simple for now, might do other stuff later.
// Just want to provide a single place to build credential contexts for
// a provider.
if (kiContext != null) {
return new KeyInfoCredentialContext(kiContext.getKeyInfo());
} else {
return null;
}
}