Interface ICryptoTransform
-
- All Known Subinterfaces:
IAuthenticatedCryptoTransform
public interface ICryptoTransformDefines 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, NoSuchAlgorithmExceptionTransforms 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:
IllegalBlockSizeExceptionBadPaddingExceptionInvalidKeyExceptionNoSuchAlgorithmException
-
-