Interface IX509ExtensionUtils
-
- All Known Implementing Classes:
X509ExtensionUtilsBC
public interface IX509ExtensionUtilsThis interface represents the wrapper for X509ExtensionUtils that provides the ability to switch between bouncy-castle and bouncy-castle FIPS implementations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IAuthorityKeyIdentifiercreateAuthorityKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo)Calls actualcreateAuthorityKeyIdentifiermethod for the wrapped X509ExtensionUtils object.ISubjectKeyIdentifiercreateSubjectKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo)Calls actualcreateSubjectKeyIdentifiermethod for the wrapped X509ExtensionUtils object.
-
-
-
Method Detail
-
createAuthorityKeyIdentifier
IAuthorityKeyIdentifier createAuthorityKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo)
Calls actualcreateAuthorityKeyIdentifiermethod for the wrapped X509ExtensionUtils object.- Parameters:
publicKeyInfo- SubjectPublicKeyInfo wrapper- Returns:
IAuthorityKeyIdentifierwrapper for the created AuthorityKeyIdentifier.
-
createSubjectKeyIdentifier
ISubjectKeyIdentifier createSubjectKeyIdentifier(ISubjectPublicKeyInfo publicKeyInfo)
Calls actualcreateSubjectKeyIdentifiermethod for the wrapped X509ExtensionUtils object.- Parameters:
publicKeyInfo- SubjectPublicKeyInfo wrapper- Returns:
ISubjectKeyIdentifierwrapper for the created SubjectKeyIdentifier.
-
-