CryptoSys API Library Manual
padHexString
Add PKCS5 padding to a hex string up to next multiple of block length [DEPRECATED].
Syntax
[VBA]
Public Function padHexString ( _
ByVal strInputHex As String, _
nBlockLen As Long _
) As String
Parameters
- strInputHex
- Hexadecimal-encoded data to be padded.
- nBlockLen
- Cipher block length in bytes (8 or 16).
Return Value
String: Padded hex string or empty string on error.
Deprecated
Use padHexBlock()
.