| Function silc_hash_table_find
 
 SYNOPSIS
 
    SilcBool silc_hash_table_find(SilcHashTable ht, void *key,
                                  void **ret_key, void **ret_context);
DESCRIPTION
    Finds the entry in the hash table by the provided `key' as fast as
    possible. Return TRUE if the entry was found and FALSE otherwise.
    The found entry is returned to the `ret_key' and `ret_context',
    respectively. If the `ret_key and `ret_context' are NULL then this
    maybe used only to check whether given key exists in the table.
 
 
 
 |