Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Modules /
_blake2 /
impl /
Delete
Unzip
Name
Size
Permission
Date
Action
blake2-config.h
1.2
KB
-rw-r--r--
2024-03-19 22:46
blake2-dispatch.c
18.67
KB
-rw-r--r--
2024-03-19 22:46
blake2-impl.h
3.94
KB
-rw-r--r--
2024-03-19 22:46
blake2-kat.h
641.23
KB
-rw-r--r--
2024-03-19 22:46
blake2.h
5.66
KB
-rw-r--r--
2024-03-19 22:46
blake2b-load-sse2.h
4.7
KB
-rw-r--r--
2024-03-19 22:46
blake2b-load-sse41.h
6.42
KB
-rw-r--r--
2024-03-19 22:46
blake2b-ref.c
9.8
KB
-rw-r--r--
2024-03-19 22:46
blake2b-round.h
4.91
KB
-rw-r--r--
2024-03-19 22:46
blake2b-test.c
1.14
KB
-rw-r--r--
2024-03-19 22:46
blake2b.c
11.47
KB
-rw-r--r--
2024-03-19 22:46
blake2bp-test.c
1.15
KB
-rw-r--r--
2024-03-19 22:46
blake2bp.c
7.4
KB
-rw-r--r--
2024-03-19 22:46
blake2s-load-sse2.h
2.96
KB
-rw-r--r--
2024-03-19 22:46
blake2s-load-sse41.h
6.74
KB
-rw-r--r--
2024-03-19 22:46
blake2s-load-xop.h
7.97
KB
-rw-r--r--
2024-03-19 22:46
blake2s-ref.c
9.62
KB
-rw-r--r--
2024-03-19 22:46
blake2s-round.h
2.87
KB
-rw-r--r--
2024-03-19 22:46
blake2s-test.c
1.14
KB
-rw-r--r--
2024-03-19 22:46
blake2s.c
10.75
KB
-rw-r--r--
2024-03-19 22:46
blake2sp-test.c
1.14
KB
-rw-r--r--
2024-03-19 22:46
blake2sp.c
7.25
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
/* BLAKE2 reference source code package - optimized C implementations Written in 2012 by Samuel Neves <sneves@dei.uc.pt> To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>. */ #include <stdio.h> #include <string.h> #include "blake2.h" #include "blake2-kat.h" int main( int argc, char **argv ) { uint8_t key[BLAKE2B_KEYBYTES]; uint8_t buf[KAT_LENGTH]; for( size_t i = 0; i < BLAKE2B_KEYBYTES; ++i ) key[i] = ( uint8_t )i; for( size_t i = 0; i < KAT_LENGTH; ++i ) buf[i] = ( uint8_t )i; for( size_t i = 0; i < KAT_LENGTH; ++i ) { uint8_t hash[BLAKE2B_OUTBYTES]; if( blake2bp( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES ) < 0 || 0 != memcmp( hash, blake2bp_keyed_kat[i], BLAKE2B_OUTBYTES ) ) { puts( "error" ); return -1; } } puts( "ok" ); return 0; }