myMPD
Internal API documentation
Loading...
Searching...
No Matches
sds_hash.h
Go to the documentation of this file.
1/*
2 SPDX-License-Identifier: GPL-3.0-or-later
3 myMPD (c) 2018-2026 Juergen Mang <mail@jcgames.de>
4 https://github.com/jcorporation/mympd
5*/
6
10
11#ifndef MYMPD_SDS_HASH_H
12#define MYMPD_SDS_HASH_H
13
14#include "dist/sds/sds.h"
15
16sds sds_hash_md5(const char *p);
17sds sds_hash_sha1(const char *p);
18sds sds_hash_sha1_sds(sds s);
19sds sds_hash_sha256(const char *p);
20sds sds_hash_sha256_sds(sds s);
21
22#endif
sds sds_hash_md5(const char *p)
Definition sds_hash.c:24
sds sds_hash_sha256_sds(sds s)
Definition sds_hash.c:77
sds sds_hash_sha1(const char *p)
Definition sds_hash.c:42
sds sds_hash_sha1_sds(sds s)
Definition sds_hash.c:52
sds sds_hash_sha256(const char *p)
Definition sds_hash.c:67