Package io.mosip.kernel.core.crypto.spi
Interface JwsSpec<R,D,C,P>
-
- Type Parameters:
R- the return type of dataD- the type of input dataC- the type of Certificate keyP- the type of private key
@Deprecated public interface JwsSpec<R,D,C,P>
Deprecated.(This class is deprecated from version 1.0.5, Please useCryptoCoreSpec.sign(Object, Object)andCryptoCoreSpec.verifySignature(Object, Object, Object)instead of these methods,)This interface is specification for Core Cryptographic Operations. The user of this interface will have all JWS basic operations like#jwssign(Object, Object),#verifySignature(Object, Object),#random().- Since:
- 1.0.0
- Author:
- Rajath
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description RjwsSign(D payload, P pKey, C cert)Deprecated.This method is for signing data.booleanverifySignature(D sign)Deprecated.This method verifies signature.
-