pub unsafe extern "C" fn Keccak_HashSqueeze(
    hashInstance: *mut Keccak_HashInstance,
    data: *mut BitSequence,
    databitlen: BitLength
) -> HashReturn
Expand description

Function to squeeze output data. @param hashInstance Pointer to the hash instance initialized by Keccak_HashInitialize(). @param data Pointer to the buffer where to store the output data. @param databitlen The number of output bits desired (must be a multiple of 8). @pre Keccak_HashFinal() must have been already called. @pre @a databitlen is a multiple of 8. @return KECCAK_SUCCESS if successful, KECCAK_FAIL otherwise.