Pbkdf2GetBytes Method
Generates an array of random bytes with the specified length.
Namespace: SnapDB.SecurityAssembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public override byte[] GetBytes(
int length
)
Public Overrides Function GetBytes (
length As Integer
) As Byte()
public:
virtual array<unsigned char>^ GetBytes(
int length
) override
function GetBytes(length);
- length Int32
- The desired length of the generated byte array.
ByteAn array of random bytes with the specified length.
| ArgumentOutOfRangeException | Thrown when length is not a positive value. |