Changes in uspace/lib/crypto/crypto.c [1433ecda:a4cf312] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/crypto.c
r1433ecda ra4cf312 32 32 */ 33 33 34 #include <assert.h> 34 35 #include <str.h> 35 36 #include <macros.h> 36 37 #include <errno.h> 37 38 #include <byteorder.h> 39 #include <limits.h> 38 40 #include "crypto.h" 39 41 … … 197 199 hash_func_t hash_sel) 198 200 { 201 assert(input_size < SSIZE_MAX); 202 199 203 if (!input) 200 204 return EINVAL;
Note:
See TracChangeset
for help on using the changeset viewer.