Forgot to commit two source files.
[GB.HASH] * BUG: Forgot to commit two source files.
This commit is contained in:
parent
74f80c0ef9
commit
219507b53e
2 changed files with 108 additions and 0 deletions
75
main/lib/hash/c_hash.c
Normal file
75
main/lib/hash/c_hash.c
Normal file
|
@ -0,0 +1,75 @@
|
|||
/***************************************************************************
|
||||
|
||||
c_hash.c
|
||||
|
||||
(c) Benoît Minisini <benoit.minisini@gambas-basic.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
MA 02110-1301, USA.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#define __C_HASH_C
|
||||
|
||||
#include "main.h"
|
||||
#include "c_hash.h"
|
||||
|
||||
static void do_hash(int algo, const char *data, int len)
|
||||
{
|
||||
HASH_begin(algo);
|
||||
HASH_process(data, len);
|
||||
GB.ReturnString(HASH_end());
|
||||
}
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
BEGIN_METHOD(Hash_Md5, GB_STRING data)
|
||||
|
||||
do_hash(HASH_MD5, STRING(data), LENGTH(data));
|
||||
|
||||
END_METHOD
|
||||
|
||||
BEGIN_METHOD(Hash_Sha1, GB_STRING data)
|
||||
|
||||
do_hash(HASH_SHA1, STRING(data), LENGTH(data));
|
||||
|
||||
END_METHOD
|
||||
|
||||
BEGIN_METHOD(Hash_Sha256, GB_STRING data)
|
||||
|
||||
do_hash(HASH_SHA256, STRING(data), LENGTH(data));
|
||||
|
||||
END_METHOD
|
||||
|
||||
BEGIN_METHOD(Hash_Sha512, GB_STRING data)
|
||||
|
||||
do_hash(HASH_SHA512, STRING(data), LENGTH(data));
|
||||
|
||||
END_METHOD
|
||||
|
||||
//-------------------------------------------------------------------------
|
||||
|
||||
GB_DESC HashDesc[] =
|
||||
{
|
||||
GB_DECLARE_STATIC("Hash"),
|
||||
|
||||
GB_STATIC_METHOD("Md5", "s", Hash_Md5, "(Data)s"),
|
||||
GB_STATIC_METHOD("Sha1", "s", Hash_Sha1, "(Data)s"),
|
||||
GB_STATIC_METHOD("Sha256", "s", Hash_Sha256, "(Data)s"),
|
||||
GB_STATIC_METHOD("Sha512", "s", Hash_Sha512, "(Data)s"),
|
||||
|
||||
GB_END_DECLARE
|
||||
};
|
||||
|
33
main/lib/hash/c_hash.h
Normal file
33
main/lib/hash/c_hash.h
Normal file
|
@ -0,0 +1,33 @@
|
|||
/***************************************************************************
|
||||
|
||||
c_hash.h
|
||||
|
||||
(c) Benoît Minisini <benoit.minisini@gambas-basic.org>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program 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 General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
||||
MA 02110-1301, USA.
|
||||
|
||||
***************************************************************************/
|
||||
|
||||
#ifndef __C_HASH_H
|
||||
#define __C_HASH_H
|
||||
|
||||
#include "gambas.h"
|
||||
|
||||
#ifndef __C_HASH_C
|
||||
extern GB_DESC HashDesc[];
|
||||
#endif
|
||||
|
||||
#endif /* __MAIN_H */
|
Loading…
Reference in a new issue