Sha256: 6b436be864780013af7257ce917f96a8a03c4b520189982fa64900867b9bf730

Contents?: true

Size: 587 Bytes

Versions: 7

Compression:

Stored size: 587 Bytes

Contents

/*
 * Copyright (c) Edward Thomson.  All rights reserved.
 *
 * This file is part of ntlmclient, distributed under the MIT license.
 * For full terms and copyright information, and for third-party
 * copyright information, see the included LICENSE.txt file.
 */

#ifndef PRIVATE_CRYPT_OPENSSL_H__
#define PRIVATE_CRYPT_OPENSSL_H__

#include <openssl/hmac.h>

/* OpenSSL 1.1.0 uses opaque structs, we'll reuse these. */
#if OPENSSL_VERSION_NUMBER < 0x10100000L
typedef struct hmac_ctx_st ntlm_hmac_ctx;
#else
# define ntlm_hmac_ctx HMAC_CTX
#endif

#endif /* PRIVATE_CRYPT_OPENSSL_H__ */

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rugged-1.1.1 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-1.1.0 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-1.0.1 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-1.0.0 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-0.99.0 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-0.28.4 vendor/libgit2/deps/ntlmclient/crypt_openssl.h
rugged-0.27.10 vendor/libgit2/deps/ntlmclient/crypt_openssl.h