public interface ICryptoTransform
| Modifier and Type | Method and Description |
|---|---|
byte[] |
doFinal(byte[] input)
Transforms the specified region of the specified byte array as a single operation.
|
byte[] doFinal(byte[] input)
throws IllegalBlockSizeException,
BadPaddingException,
InvalidKeyException,
NoSuchAlgorithmException
input - The byte array to be transformedIllegalBlockSizeExceptionBadPaddingExceptionInvalidKeyExceptionNoSuchAlgorithmException/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*/