Uses of Class
io.mosip.kernel.clientcrypto.exception.ClientCryptoException
-
Packages that use ClientCryptoException Package Description io.mosip.kernel.clientcrypto.service.impl io.mosip.kernel.clientcrypto.service.spi -
-
Uses of ClientCryptoException in io.mosip.kernel.clientcrypto.service.impl
Methods in io.mosip.kernel.clientcrypto.service.impl that throw ClientCryptoException Modifier and Type Method Description byte[]AndroidClientCryptoServiceImpl. asymmetricDecrypt(@javax.validation.constraints.NotNull byte[] cipher)byte[]AndroidClientCryptoServiceImpl. asymmetricEncrypt(@javax.validation.constraints.NotNull byte[] plainData)static byte[]AndroidClientCryptoServiceImpl. asymmetricEncrypt(byte[] public_key, byte[] dataToEncrypt)voidAndroidClientCryptoServiceImpl. closeSecurityInstance()byte[]AndroidClientCryptoServiceImpl. signData(@javax.validation.constraints.NotNull byte[] dataToSign)booleanAndroidClientCryptoServiceImpl. validateSignature(@javax.validation.constraints.NotNull byte[] signature, @javax.validation.constraints.NotNull byte[] actualData)static booleanAndroidClientCryptoServiceImpl. validateSignature(byte[] public_key, byte[] signature, byte[] actualData) -
Uses of ClientCryptoException in io.mosip.kernel.clientcrypto.service.spi
Methods in io.mosip.kernel.clientcrypto.service.spi that throw ClientCryptoException Modifier and Type Method Description byte[]ClientCryptoService. asymmetricDecrypt(@javax.validation.constraints.NotNull byte[] cipher)Decrypts provided cipher textbyte[]ClientCryptoService. asymmetricEncrypt(@javax.validation.constraints.NotNull byte[] plainData)Encrypts the input datavoidClientCryptoService. closeSecurityInstance()Closes underlying security implementationbyte[]ClientCryptoService. signData(@javax.validation.constraints.NotNull byte[] dataToSign)Signs the input data by private key providedbooleanClientCryptoService. validateSignature(@javax.validation.constraints.NotNull byte[] signature, @javax.validation.constraints.NotNull byte[] actualData)Validates the signed data against the actual data using the public part of underlying security module
-