public class CompositeSignatureSpec
extends java.lang.Object
implements java.security.spec.AlgorithmParameterSpec
| Constructor and Description |
|---|
CompositeSignatureSpec(boolean isPrehashMode)
Base Constructor.
|
CompositeSignatureSpec(boolean isPrehashMode,
java.security.spec.AlgorithmParameterSpec secondaryParameterSpec)
Constructor which allows for another parameter spec (usually ContextParameterSpec).
|
| Modifier and Type | Method and Description |
|---|---|
java.security.spec.AlgorithmParameterSpec |
getSecondarySpec() |
boolean |
isPrehashMode() |
public CompositeSignatureSpec(boolean isPrehashMode)
isPrehashMode - if true, msg passed in will be the precalculated pre-hash.public CompositeSignatureSpec(boolean isPrehashMode,
java.security.spec.AlgorithmParameterSpec secondaryParameterSpec)
isPrehashMode - if true, msg passed in will be the precalculated pre-hash.secondaryParameterSpec - the other spec, in addition to pre-hash mode, which needs to be applied.