put openssl rsautl in raw signatures mode.

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3216 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
aj 2007-07-11 09:35:36 +00:00
parent c224b0c824
commit 486db2f584
1 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ if p15_gen_key rsa/1048 --id 45 --key-usage decrypt -a 01; then
msg "Encrypting message (128 byte)"
dd if=bintest of=$o bs=128 count=1
run_check_status openssl rsautl -pubin -inkey $p -encrypt -in $o -out $e
run_check_status openssl rsautl -pubin -inkey $p -encrypt -raw -in $o -out $e
p15_crypt -c -i $e -o $d
cmp $o $d || fail "Decrypted file does not match plain text file"
success
@ -65,7 +65,7 @@ if p15_store_key $k -a 01 -u decrypt; then
msg "Encrypting message (128 bytes)"
dd if=bintest of=$o bs=128 count=1
run_check_status openssl rsautl -pubin -inkey $p -encrypt -in $o -out $e
run_check_status openssl rsautl -pubin -inkey $p -encrypt -raw -in $o -out $e
p15_crypt -c -i $e -o $d
cmp $o $d || fail "Decrypted file does not match plain text file"
success