diff options
author | Marvin Borner | 2021-04-01 19:39:14 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-01 19:39:14 +0200 |
commit | afa00abb2b68205bee539d7947130d6b1b1ec6e9 (patch) | |
tree | 3a821a75af6c4d4ff1bd4128c4859d77abf87e66 /libs/libc/inc/crypto.h | |
parent | 4c168fb34c15a1b8981abef7ccef1542a6fb05ca (diff) |
Hardened entire system
By using the nonnull attribute and replace buffer-overflow-prone
functions like strcpy, strcat and sprintf by strlcpy, strlcat and
snprintf.
Diffstat (limited to 'libs/libc/inc/crypto.h')
-rw-r--r-- | libs/libc/inc/crypto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/libc/inc/crypto.h b/libs/libc/inc/crypto.h index bbe8d7e..16cdf86 100644 --- a/libs/libc/inc/crypto.h +++ b/libs/libc/inc/crypto.h @@ -5,7 +5,7 @@ #include <def.h> -void md5(const void *initial_msg, u32 initial_len, u8 digest[16]); -u32 crc32(u32 crc, const void *buf, u32 size); +void md5(const void *initial_msg, u32 initial_len, u8 digest[16]) NONNULL; +u32 crc32(u32 crc, const void *buf, u32 size) NONNULL; #endif |