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