Interface IJcaContentSignerBuilder
-
- All Known Implementing Classes:
JcaContentSignerBuilderBC
public interface IJcaContentSignerBuilder
This interface represents the wrapper for JcaContentSignerBuilder 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 IContentSigner
build(java.security.PrivateKey pk)
Calls actualbuild
method for the wrapped JcaContentSignerBuilder object.IJcaContentSignerBuilder
setProvider(java.lang.String providerName)
Calls actualsetProvider
method for the wrapped JcaContentSignerBuilder object.
-
-
-
Method Detail
-
build
IContentSigner build(java.security.PrivateKey pk) throws AbstractOperatorCreationException
Calls actualbuild
method for the wrapped JcaContentSignerBuilder object.- Parameters:
pk
- private key- Returns:
IContentSigner
the wrapper for built ContentSigner object.- Throws:
AbstractOperatorCreationException
- wrapped OperatorCreationException.
-
setProvider
IJcaContentSignerBuilder setProvider(java.lang.String providerName)
Calls actualsetProvider
method for the wrapped JcaContentSignerBuilder object.- Parameters:
providerName
- provider name- Returns:
IJcaContentSignerBuilder
this wrapper object.
-
-