Interface IX509ExtensionUtils
- All Known Implementing Classes:
X509ExtensionUtilsBC
public interface IX509ExtensionUtils
This interface represents the wrapper for X509ExtensionUtils that provides the ability
to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
Method Summary
Modifier and TypeMethodDescriptioncreateAuthorityKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo) Calls actualcreateAuthorityKeyIdentifiermethod for the wrapped X509ExtensionUtils object.createSubjectKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo) Calls actualcreateSubjectKeyIdentifiermethod for the wrapped X509ExtensionUtils object.
-
Method Details
-
createAuthorityKeyIdentifier
Calls actualcreateAuthorityKeyIdentifiermethod for the wrapped X509ExtensionUtils object.- Parameters:
publicKeyInfo- SubjectPublicKeyInfo wrapper- Returns:
IAuthorityKeyIdentifierwrapper for the created AuthorityKeyIdentifier.
-
createSubjectKeyIdentifier
Calls actualcreateSubjectKeyIdentifiermethod for the wrapped X509ExtensionUtils object.- Parameters:
publicKeyInfo- SubjectPublicKeyInfo wrapper- Returns:
ISubjectKeyIdentifierwrapper for the created SubjectKeyIdentifier.
-