Blame apache2/msc_crypt.h

Packit 284210
/*
Packit 284210
* ModSecurity for Apache 2.x, http://www.modsecurity.org/
Packit 284210
* Copyright (c) 2004-2013 Trustwave Holdings, Inc. (http://www.trustwave.com/)
Packit 284210
*
Packit 284210
* You may not use this file except in compliance with
Packit 284210
* the License.  You may obtain a copy of the License at
Packit 284210
*
Packit 284210
*     http://www.apache.org/licenses/LICENSE-2.0
Packit 284210
*
Packit 284210
* If any of the files related to licensing are missing or if you have any
Packit 284210
* other questions related to licensing please contact Trustwave Holdings, Inc.
Packit 284210
* directly using the email address security@modsecurity.org.
Packit 284210
*/
Packit 284210
Packit 284210
#ifndef _MSC_CRYPT_H_
Packit 284210
#define _MSC_CRYPT_H_
Packit 284210
Packit 284210
#include "modsecurity.h"
Packit 284210
#include <libxml/HTMLparser.h>
Packit 284210
#include <libxml/xpath.h>
Packit 284210
Packit 284210
#define HMAC_PAD_SIZE 65
Packit 284210
#define HASH_ONLY 0
Packit 284210
#define FULL_LINK 1
Packit 284210
Packit 284210
#ifndef INT32_MAX
Packit 284210
#define INT32_MAX      (2147483647)
Packit 284210
#endif
Packit 284210
Packit 284210
char DSOLOCAL *hmac(modsec_rec *msr, const char *key, int key_len,
Packit 284210
                     unsigned char *msg, int msglen);
Packit 284210
char DSOLOCAL *do_hash_link(modsec_rec *msr, char *link,
Packit 284210
                      int type);
Packit 284210
char DSOLOCAL *getkey(apr_pool_t *mp);
Packit 284210
Packit 284210
int DSOLOCAL init_response_body_html_parser(modsec_rec *msr);
Packit 284210
int DSOLOCAL hash_response_body_links(modsec_rec *msr);
Packit 284210
int DSOLOCAL inject_hashed_response_body(modsec_rec *msr, int elts);
Packit 284210
int DSOLOCAL do_hash_method(modsec_rec *msr, char *link, int type);
Packit 284210
int DSOLOCAL modify_response_header(modsec_rec *msr);
Packit 284210
char DSOLOCAL *normalize_path(modsec_rec *msr, char *input);
Packit 284210
#endif