Changeset 9fc15f9 in mainline


Ignore:
Timestamp:
2025-04-18T20:55:58Z (4 days ago)
Author:
GitHub <noreply@…>
Children:
0339670
Parents:
6b03a3c (diff), 0639afc (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Wayne Thornton <wmthornton-dev@…> (2025-04-18 20:55:58)
git-committer:
GitHub <noreply@…> (2025-04-18 20:55:58)
Message:

Merge branch 'HelenOS:master' into master

Location:
uspace/lib/crypto
Files:
2 edited

Legend:

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

    r6b03a3c r9fc15f9  
    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{
  • uspace/lib/crypto/crypto.h

    r6b03a3c r9fc15f9  
    5454extern errno_t aes_encrypt(uint8_t *, uint8_t *, uint8_t *);
    5555extern errno_t aes_decrypt(uint8_t *, uint8_t *, uint8_t *);
    56 extern errno_t create_hash(uint8_t *, size_t, uint8_t *, hash_func_t);
     56extern errno_t create_hash(const uint8_t *, size_t, uint8_t *, hash_func_t);
    5757extern errno_t hmac(uint8_t *, size_t, uint8_t *, size_t, uint8_t *, hash_func_t);
    5858extern errno_t pbkdf2(uint8_t *, size_t, uint8_t *, size_t, uint8_t *);
Note: See TracChangeset for help on using the changeset viewer.