#ifndef HEADER_CURL_DES_H1#define HEADER_CURL_DES_H2/***************************************************************************3* _ _ ____ _4* Project ___| | | | _ \| |5* / __| | | | |_) | |6* | (__| |_| | _ <| |___7* \___|\___/|_| \_\_____|8*9* Copyright (C) Steve Holme, <[email protected]>.10*11* This software is licensed as described in the file COPYING, which12* you should have received as part of this distribution. The terms13* are also available at https://curl.se/docs/copyright.html.14*15* You may opt to use, copy, modify, merge, publish, distribute and/or sell16* copies of the Software, and permit persons to whom the Software is17* furnished to do so, under the terms of the COPYING file.18*19* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY20* KIND, either express or implied.21*22* SPDX-License-Identifier: curl23*24***************************************************************************/2526#include "curl_setup.h"2728#if defined(USE_CURL_NTLM_CORE) && \29(defined(USE_GNUTLS) || \30defined(USE_OS400CRYPTO) || \31defined(USE_WIN32_CRYPTO))3233/* Applies odd parity to the given byte array */34void Curl_des_set_odd_parity(unsigned char *bytes, size_t length);3536#endif3738#endif /* HEADER_CURL_DES_H */394041