Changeset a4cf312 in mainline for uspace/lib/crypto/crypto.c
- Timestamp:
- 2019-06-05T13:58:08Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 58168e0
- Parents:
- a18da67
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/crypto/crypto.c
ra18da67 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.