]> git.cryptolib.org Git - avr-crypto-lib.git/blob - host/shavs_test.rb
host tools for verification +testvectors
[avr-crypto-lib.git] / host / shavs_test.rb
1 #!/usr/bin/ruby 
2 # shavs_test.rb
3 =begin
4     This file is part of the AVR-Crypto-Lib.
5     Copyright (C) 2008  Daniel Otte (daniel.otte@rub.de)
6
7     This program is free software: you can redistribute it and/or modify
8     it under the terms of the GNU General Public License as published by
9     the Free Software Foundation, either version 3 of the License, or
10     (at your option) any later version.
11
12     This program is distributed in the hope that it will be useful,
13     but WITHOUT ANY WARRANTY; without even the implied warranty of
14     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15     GNU General Public License for more details.
16
17     You should have received a copy of the GNU General Public License
18     along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 =end
20
21
22
23 require 'serialport'
24
25 def init_system
26   sleep 1
27   $sp.print("echo  off \r")
28 #  line = $sp.readlines()
29 #  print("DBG 0.0: ")
30 #  print(line)
31 #  sleep 1
32   $sp.print("shavs_set a \r")
33 #  line = $sp.readlines()
34 #  print("DBG 0.1: ")
35 #  print(line)
36 #  sleep 1
37   $sp.print("shavs_test1 \r")
38 #  line = $sp.readlines()
39 #  print("DBG 0.2: ")
40 #  print(line)
41 end
42
43 def get_md
44   begin
45     line = $sp.gets()
46         line = "" if line==nil
47 #       puts("DBG g: "+line)
48   end while not /[\s]*MD[\s]*=.*/.match(line)
49   return line   
50 end
51
52 def run_test(filename)
53   if not File.exist?(filename)
54         puts("ERROR file "+filename+" does not exist!")
55   end
56   pos = 0
57   file = File.new(filename, "r");
58   until file.eof
59     begin
60       lb=file.gets()
61     end while not (file.eof or (/[\s]*Len[\s]*=.*/.match(lb)))
62 #    puts("DBG sending: "+lb);
63         return if file.eof
64         $sp.print(lb.strip)
65         $sp.print("\r")
66     begin
67           lb=file.gets()
68     end while not (file.eof or (/[\s]*Msg[\s]*=.*/.match(lb)))
69     return if file.eof
70 #    puts("DBG sending: "+lb);
71         $sp.print(lb.strip)
72         avr_md = get_md()
73     begin
74           lb=file.gets()
75     end while not /[\s]*MD[\s]*=.*/.match(lb)
76         a = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(lb))[1];
77         b = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(avr_md))[1];
78         a.upcase!
79         b.upcase!
80         puts("") if (pos%$linewidth==0 and $linewidth!=0)
81         putc((a==b)?'*':'!')
82         pos += 1
83   end
84   
85 end
86
87 if ARGV.size < 5
88   STDERR.print <<EOF
89   Usage: ruby #{$0} port bps nbits stopb testfile ...
90 EOF
91   exit(1)
92 end
93
94 puts("\nPort: "+ARGV[0]+ "@"+ARGV[1]+" "+ARGV[2]+"N"+ARGV[3]+"\n");
95 $linewidth = 64
96 $sp = SerialPort.new(ARGV[0], ARGV[1].to_i, ARGV[2].to_i, ARGV[3].to_i, SerialPort::NONE);
97 $sp.read_timeout=1000; # 5 minutes
98
99 #irb
100
101 init_system()
102
103 for i in (4..(ARGV.size-1))
104   run_test(ARGV[i])
105   puts("")
106 end
107
108 #exit(0);
109
110