00001 /* 00002 * HTTP authentication 00003 * Copyright (c) 2010 Martin Storsjo 00004 * 00005 * This file is part of FFmpeg. 00006 * 00007 * FFmpeg is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU Lesser General Public 00009 * License as published by the Free Software Foundation; either 00010 * version 2.1 of the License, or (at your option) any later version. 00011 * 00012 * FFmpeg is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00015 * Lesser General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU Lesser General Public 00018 * License along with FFmpeg; if not, write to the Free Software 00019 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00020 */ 00021 00022 #ifndef AVFORMAT_HTTPAUTH_H 00023 #define AVFORMAT_HTTPAUTH_H 00024 00028 typedef enum HTTPAuthType { 00029 HTTP_AUTH_NONE = 0, 00030 HTTP_AUTH_BASIC, 00032 HTTP_AUTH_DIGEST, 00033 } HTTPAuthType; 00034 00035 typedef struct { 00036 char nonce[300]; 00037 char algorithm[10]; 00038 char qop[30]; 00041 char opaque[300]; 00044 int nc; 00046 } DigestParams; 00047 00052 typedef struct { 00056 HTTPAuthType auth_type; 00060 char realm[200]; 00064 DigestParams digest_params; 00065 } HTTPAuthState; 00066 00067 void ff_http_auth_handle_header(HTTPAuthState *state, const char *key, 00068 const char *value); 00069 char *ff_http_auth_create_response(HTTPAuthState *state, const char *auth, 00070 const char *path, const char *method); 00071 00072 #endif /* AVFORMAT_HTTPAUTH_H */