1 #ifndef fooraoputilfoo 2 #define fooraoputilfoo 3 4 /*** 5 This file is part of PulseAudio. 6 7 Copyright 2008 Colin Guthrie 8 Copyright Kungliga Tekniska högskolan 9 Copyright 2013 Martin Blanchard 10 11 PulseAudio is free software; you can redistribute it and/or modify 12 it under the terms of the GNU Lesser General Public License as published 13 by the Free Software Foundation; either version 2.1 of the License, 14 or (at your option) any later version. 15 16 PulseAudio is distributed in the hope that it will be useful, but 17 WITHOUT ANY WARRANTY; without even the implied warranty of 18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 19 General Public License for more details. 20 21 You should have received a copy of the GNU Lesser General Public License 22 along with PulseAudio; if not, see <http://www.gnu.org/licenses/>. 23 ***/ 24 25 /*** 26 This file was originally inspired by a file developed by 27 Kungliga Tekniska högskolan. 28 ***/ 29 30 #define RAOP_DEFAULT_LATENCY 2000 /* msec */ 31 32 int pa_raop_base64_encode(const void *data, int len, char **str); 33 int pa_raop_base64_decode(const char *str, void *data); 34 35 int pa_raop_md5_hash(const char *data, int len, char **str); 36 37 int pa_raop_basic_response(const char *user, const char *pwd, char **str); 38 int pa_raop_digest_response(const char *user, const char *realm, const char *password, 39 const char *nonce, const char *uri, char **str); 40 41 #endif 42