Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/crypto/crypto.c

    r1433ecda ra4cf312  
    3232 */
    3333
     34#include <assert.h>
    3435#include <str.h>
    3536#include <macros.h>
    3637#include <errno.h>
    3738#include <byteorder.h>
     39#include <limits.h>
    3840#include "crypto.h"
    3941
     
    197199    hash_func_t hash_sel)
    198200{
     201        assert(input_size < SSIZE_MAX);
     202
    199203        if (!input)
    200204                return EINVAL;
Note: See TracChangeset for help on using the changeset viewer.