Changeset 3e4be0d in mainline for uspace/lib/crypto/crypto.c


Ignore:
Timestamp:
2025-04-18T18:47:34Z (4 days ago)
Author:
Miroslav Cimerman <mc@…>
Parents:
25fdb2d
Message:

libcrypto: create_hash(): const qual for input arg

File:
1 edited

Legend:

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

    r25fdb2d r3e4be0d  
    196196 *
    197197 */
    198 errno_t create_hash(uint8_t *input, size_t input_size, uint8_t *output,
     198errno_t create_hash(const uint8_t *input, size_t input_size, uint8_t *output,
    199199    hash_func_t hash_sel)
    200200{
Note: See TracChangeset for help on using the changeset viewer.