mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-17 07:37:13 +02:00
bin
cmake
module
Base
Core
Entity
Library
Misc
Vendor
AES256
B64
Hash
MDBC
cmake
examples
include
mysql
CMakeLists.txt
config-win.h
dbug.h
errmsg.h
getopt.h
hash.h
m_ctype.h
m_string.h
ma_common.h
ma_dyncol.h
ma_secure.h
my_alarm.h
my_base.h
my_config.h
my_config.h.in
my_context.h
my_dir.h
my_global.h
my_list.h
my_net.h
my_no_pthread.h
my_pthread.h
my_stmt.h
my_sys.h
mysql.h
mysql_async.h
mysql_com.h
mysql_io.h
mysql_mm.h
mysql_priv.h
mysql_version.h
mysql_version.h.in
mysql_wireprotocol.h
mysqld_error.h
mysys_err.h
sha1.h
thr_alarm.h
violite.h
libmariadb
mariadb_config
plugins
win
win-iconv
zlib
CMakeLists.txt
COPYING.LIB
README
MaxmindDB
PUGIXML
SQLite
SimpleIni
SimpleSocket
TinyDir
Whirlpool
CMakeLists.txt
CMakeLists.txt
Core.cpp
Core.hpp
Logger.cpp
Logger.hpp
Main.cpp
Register.cpp
SqBase.hpp
sdk
.gitignore
.gitmodules
CMakeLists.txt
LICENSE
README.md
42 lines
1.5 KiB
C
42 lines
1.5 KiB
C
/****************************************************************************
|
|
Copyright (C) 2012 Monty Program AB
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not see <http://www.gnu.org/licenses>
|
|
or write to the Free Software Foundation, Inc.,
|
|
51 Franklin St., Fifth Floor, Boston, MA 02110, USA
|
|
*****************************************************************************/
|
|
|
|
/* This code came from the PHP project, initially written by
|
|
Stefan Esser */
|
|
|
|
#ifndef SHA1_H
|
|
#define SHA1_H
|
|
|
|
#define SHA1_MAX_LENGTH 20
|
|
#define SCRAMBLE_LENGTH 20
|
|
#define SCRAMBLE_LENGTH_323 8
|
|
|
|
/* SHA1 context. */
|
|
typedef struct {
|
|
uint32 state[5]; /* state (ABCD) */
|
|
uint32 count[2]; /* number of bits, modulo 2^64 (lsb first) */
|
|
unsigned char buffer[64]; /* input buffer */
|
|
} MYSQL_SHA1_CTX;
|
|
|
|
void MYSQL_SHA1Init(MYSQL_SHA1_CTX *);
|
|
void MYSQL_SHA1Update(MYSQL_SHA1_CTX *, const unsigned char *, size_t);
|
|
void MYSQL_SHA1Final(unsigned char[20], MYSQL_SHA1_CTX *);
|
|
|
|
#endif
|