mscorlib(4.0.0.0) API with additions
ICryptoTransform.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.Security.Cryptography
4
{
6
[ComVisible(
true
)]
7
public
interface
ICryptoTransform
:
IDisposable
8
{
11
int
InputBlockSize
12
{
13
get
;
14
}
15
18
int
OutputBlockSize
19
{
20
get
;
21
}
22
26
bool
CanTransformMultipleBlocks
27
{
28
get
;
29
}
30
34
bool
CanReuseTransform
35
{
36
get
;
37
}
38
46
int
TransformBlock
(
byte
[] inputBuffer,
int
inputOffset,
int
inputCount,
byte
[] outputBuffer,
int
outputOffset);
47
53
byte
[]
TransformFinalBlock
(
byte
[] inputBuffer,
int
inputOffset,
int
inputCount);
54
}
55
}
System.Security.Cryptography.ICryptoTransform.CanTransformMultipleBlocks
bool CanTransformMultipleBlocks
Gets a value indicating whether multiple blocks can be transformed.
Definition:
ICryptoTransform.cs:27
System.Security.Cryptography
Definition:
Aes.cs:3
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.IDisposable
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition:
IDisposable.cs:8
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Security.Cryptography.ICryptoTransform.InputBlockSize
int InputBlockSize
Gets the input block size.
Definition:
ICryptoTransform.cs:12
System.Security.Cryptography.ICryptoTransform.CanReuseTransform
bool CanReuseTransform
Gets a value indicating whether the current transform can be reused.
Definition:
ICryptoTransform.cs:35
System.Security.Cryptography.ICryptoTransform.TransformBlock
int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, byte[] outputBuffer, int outputOffset)
Transforms the specified region of the input byte array and copies the resulting transform to the spe...
System.Security.Cryptography.ICryptoTransform
Defines the basic operations of cryptographic transformations.
Definition:
ICryptoTransform.cs:7
System.Security.Cryptography.ICryptoTransform.OutputBlockSize
int OutputBlockSize
Gets the output block size.
Definition:
ICryptoTransform.cs:19
System.Security.Cryptography.ICryptoTransform.TransformFinalBlock
byte [] TransformFinalBlock(byte[] inputBuffer, int inputOffset, int inputCount)
Transforms the specified region of the specified byte array.
All cs
System.Security.Cryptography
ICryptoTransform.cs
Generated by
1.8.15