mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-25 03:27:12 +02:00
Add MariaDB Connector/C as a built-in alternative (v3.2.3).
This commit is contained in:
7
vendor/MDBC/plugins/auth/ref10/crypto_hash_sha512.h
vendored
Normal file
7
vendor/MDBC/plugins/auth/ref10/crypto_hash_sha512.h
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
#if defined(MYSQL_CLIENT) || defined(LIBMARIADB)
|
||||
#include <ma_crypt.h>
|
||||
#define crypto_hash_sha512(DST,SRC,SLEN) ma_hash(MA_HASH_SHA512, SRC, SLEN, DST)
|
||||
#else
|
||||
#include <mysql/service_sha2.h>
|
||||
#define crypto_hash_sha512(DST,SRC,SLEN) my_sha512(DST,(char*)(SRC),SLEN)
|
||||
#endif
|
Reference in New Issue
Block a user