Méthode | Description | |
---|---|---|
Pad ( byte input, int offset, int length, int paddinglength ) : byte[] |
Pads the specified input with a given number of bytes.
|
|
Pad ( int blockSize, byte input, int offset, int length ) : byte[] |
Pads the specified input to match the block size.
|
public Pad ( byte input, int offset, int length, int paddinglength ) : byte[] | ||
input | byte | The input. |
offset | int | The zero-based offset in |
length | int | The number of bytes in |
paddinglength | int | The number of bytes to pad the input with. |
Résultat | byte[] |
public Pad ( int blockSize, byte input, int offset, int length ) : byte[] | ||
blockSize | int | The size of the block. |
input | byte | The input. |
offset | int | The zero-based offset in |
length | int | The number of bytes in |
Résultat | byte[] |