ICryptoTransform Interface

public interface ICryptoTransform

Defines the basic operations of cryptographic transformations.

Method Summary

Modifier and Type Method and Description
byte [] doFinal(byte[] input)

Transforms the specified region of the specified byte array as a single operation.

Method Details

doFinal

public byte [] doFinal(byte[] input)

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

Applies to