Interface ICryptoTransform
-
- All Known Subinterfaces:
IAuthenticatedCryptoTransform
public interface ICryptoTransform
Defines the basic operations of cryptographic transformations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]
doFinal(byte[] input)
Transforms the specified region of the specified byte array as a single operation.
-
-
-
Method Detail
-
doFinal
byte[] doFinal(byte[] input) throws IllegalBlockSizeException, BadPaddingException, InvalidKeyException, NoSuchAlgorithmException
Transforms the specified region of the specified byte array as a single operation.- Parameters:
input
- The byte array to be transformed- Returns:
- The transformed result.
- Throws:
IllegalBlockSizeException
BadPaddingException
InvalidKeyException
NoSuchAlgorithmException
-
-