Remove CI/CD that rely on bin/smartpgp-cli

This commit is contained in:
Arnaud Fontaine 2022-01-10 21:14:01 +01:00
parent e84853414f
commit faaa48c042
1 changed files with 0 additions and 11 deletions

View File

@ -56,14 +56,3 @@ jobs:
python3 .github/workflows/card-status.py;
# Main tests
python3 .github/workflows/test_SmartPGP.py;
# Reset
python3 .github/workflows/reset.py;
# Test crypto switch
python2 bin/example-set-mixed-crypto.py;
# Test AES
echo -n "AAAAAAAAAAAAAAAA" > /tmp/aes_key.bin;
python2 bin/smartpgp-cli put-aes-key -i /tmp/aes_key.bin;
echo -n "BBBBBBBBBBBBBBBB" > /tmp/aes_to_encrypt.bin;
python2 bin/smartpgp-cli encrypt-aes -p "123456" -i /tmp/aes_to_encrypt.bin -o /tmp/aes_encrypted.bin;
python2 bin/smartpgp-cli decrypt-aes -p "123456" -i /tmp/aes_encrypted.bin -o /tmp/aes_decrypted.bin;
diff /tmp/aes_decrypted.bin /tmp/aes_to_encrypt.bin;