DOFCipherdecrypt Method OpenDOF Object Access Library
Decrypt a block of data.

Namespace: org.opendof.core.oal.security
Assembly: dof-oal (in dof-oal.dll) Version: 7.0.1.2
Syntax

C#
public abstract byte[] decrypt(
	byte[] ciphertext
)

Parameters

ciphertext
Type: SystemByte
The buffer containing the ciphertext block to be decrypted. Must not be null.

Return Value

Type: Byte
The decrypted block.
Exceptions

ExceptionCondition
DOFSecurityExceptionIf the ciphertext can not be decrypted.
DOFSecurityException
Remarks

Decrypt a block of data. This call is used to decrypt a single block of ciphertext (of size getBlockSize() ).
See Also

Reference