CryptoSys API Library Manual
Pc1.Encrypt Method (Byte[], Byte[])
Encrypt byte array input using RC4-compatible algorithm
Syntax
[C#]
public static byte[] Encrypt(
byte[] input,
byte[] key
)
[VB.NET]
Public Shared Function Encrypt ( _
input As Byte(), _
key As Byte() _
) As Byte()
Parameters
- input
- input byte array, any length
- key
- key byte array, any length
Return Value
byte array
Remarks
Superseded by Cipher.StreamBytes()
See Also
VB6/C equivalent: PC1_Bytes
[Contents] [Index]