aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/tools/python3/src/Modules/_blake2/impl/blake2s-test.c
blob: 7a7c3a5d618db74f790c0a21c499f0a97f2dcd07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/* 
   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" // Y_IGNORE 
int main( int argc, char **argv ) 
{ 
  uint8_t key[BLAKE2S_KEYBYTES]; 
  uint8_t buf[KAT_LENGTH]; 
 
  for( size_t i = 0; i < BLAKE2S_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[BLAKE2S_OUTBYTES]; 
 
    if( blake2s( hash, buf, key, BLAKE2S_OUTBYTES, i, BLAKE2S_KEYBYTES ) < 0 || 
        0 != memcmp( hash, blake2s_keyed_kat[i], BLAKE2S_OUTBYTES ) ) 
    { 
      puts( "error" ); 
      return -1; 
    } 
  } 
 
  puts( "ok" ); 
  return 0; 
}