Returns the number of bytes in the hash output for the algorithm defined in the current SHA-3 context.
Public Declare Function SHA3_LengthInBytes Lib "diCryptoSys.dll"
(ByVal hContext As Long) As Long
nLen = SHA3_LengthInBytes(hContext)
long _stdcall SHA3_LengthInBytes(long hContext);
the number of bytes in the hash output for the algorithm defined in the current SHA-3 context, or a negative error code.
Dim h As Long
Dim nLen As Long
h = SHA3_Init(256)
nLen = SHA3_LengthInBytes(h)
Debug.Print "SHA3_LengthInBytes = " & nLen
SHA3_LengthInBytes = 32