source: examples/passphrase_tests/python/acme_rockets_rt0_hand/run_test @ 08b8da7

mei_rt2mei_rt2_fix_1
Last change on this file since 08b8da7 was ba6027a, checked in by Mei <mei@…>, 12 years ago

1) modified code all around to add support for encrypted private key for

ID credential

2) add new abac_key_t structure (abac_key.c)
3) add new keycheck option to creddy
4) add 2 new test suites

  • Property mode set to 100755
File size: 769 bytes
Line 
1#!/bin/sh
2
3rm -rf *.cn *.sha *.log
4rm -rf *.pem *.der
5cp ../../ENC_PRIVATE.PEM Acme_private.pem
6
7echo '---setup principals'
8env keystore=`pwd` ./setup.py
9
10echo '---setup attributes'
11env keystore=`pwd` ./attr.py
12
13echo '---run queries'
14
15# Make prover queries
16g_cmd_sha=`grep "cmd1:" query.py |sed "s/cmd1://g" `
17g_cmd_cn=`grep "cmd2:" query.py |sed "s/cmd2://g" `
18
19echo '...with sha'
20eval $g_cmd_sha 2>/dev/null 1 > rocket.sha
21
22echo '...with cn'
23eval $g_cmd_cn 1>rocket.cn 2>&1
24
25result=`diff rocket.cn rocket.save 2>/dev/null`
26if [ $? -eq 0 ]; then
27    if [ "$result" = "" ]; then
28       echo "   PASSED"
29    else
30       echo "   ERROR:acme_rockets_rt0 python test result differs!!!"
31    fi
32else
33    echo "   ERROR:acme_rockets_rt0  pythontest result differs!!!"
34fi
35
36
Note: See TracBrowser for help on using the repository browser.