SILC_HASH_MAXLEN

NAME

    #define SILC_HASH_MAXLEN 64

DESCRIPTION

Maximum size of digest any algorithm supported by SILC Crypto Toolkit would produce. You can use this to define static digest buffers and safely use it with any hash function.

EXAMPLE

   unsigned char digest[SILC_HASH_MAXLEN];

   silc_hash_make(hash, data, data_len, digest);