4 This file is part of the AVR-Crypto-Lib.
5 Copyright (C) 2008 Daniel Otte (daniel.otte@rub.de)
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.
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.
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/>.
27 $sp.print("echo off \r")
28 print("DBG i: " + "echo off \r"+"\n") if $debug
29 # line = $sp.readlines()
33 $sp.print("shavs_set #{$algo_select} \r")
34 print("DBG i: " + "shavs_set #{$algo_select} \r"+"\n") if $debug
35 # line = $sp.readlines()
39 $sp.print("shavs_test1 \r")
40 print("DBG i: " + "shavs_test1 \r"+"\n") if $debug
41 # line = $sp.readlines()
49 line = "" if line==nil
50 puts("DBG g: "+line) if $debug
51 end while not /[\s]*MD[\s]*=.*/.match(line)
55 def send_md(md_string)
56 for i in 0..md_string.length-1
57 $sp.print(md_string[i].chr)
58 # print("DBG s: "+ md_string[i].chr) if $debug
65 def run_test(filename)
67 if not File.exist?(filename)
68 puts("ERROR file "+filename+" does not exist!")
71 file = File.new(filename, "r");
75 end while not (file.eof or (/[\s]*Len[\s]*=.*/.match(lb)))
76 puts("DBG sending: "+lb) if $debug
82 end while not (file.eof or (/[\s]*Msg[\s]*=.*/.match(lb)))
84 puts("DBG sending: "+lb) if $debug
89 end while not /[\s]*MD[\s]*=.*/.match(lb)
90 a = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(lb))[1];
91 b = (/[\s]*MD[\s]*=[\s]*([0-9a-fA-F]*).*/.match(avr_md))[1];
94 puts("") if (pos%$linewidth==0 and $linewidth!=0)
109 Usage: ruby #{$0} port bps nbits stopb algo_select testfile ...
114 puts("\nPort: "+ARGV[0]+ "@"+ARGV[1]+" "+ARGV[2]+"N"+ARGV[3]+"\n");
115 puts("serial port interface version: " + SerialPort::VERSION);
117 $params = { "baud" => ARGV[1].to_i,
118 "data_bits" => ARGV[2].to_i,
119 "stop_bits" => ARGV[3].to_i,
120 "parity" => SerialPort::NONE }
121 $sp = SerialPort.new(ARGV[0], $params)
122 #$sp = SerialPort.new(ARGV[0], ARGV[1].to_i, ARGV[2].to_i, ARGV[3].to_i, SerialPort::NONE);
124 $sp.read_timeout=1000; # 5 minutes
125 $sp.flow_control = SerialPort::SOFT
126 $algo_select = ARGV[4]
131 for i in (5..(ARGV.size-1))
132 errors = run_test(ARGV[i])
136 puts("[errors: "+errors.to_s+"]")