diff options
author | Tails developers <amnesia@boum.org> | 2014-12-19 00:40:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-12-21 09:45:40 +0100 |
commit | 51680b6ebb645d37ebdfcd122ca163b3a638aefa (patch) | |
tree | 337e128d2eac3cbc89ecbacf38851bfa33469cd5 /features/encryption.feature | |
parent | 44bab3c86ca3d95837f4c50cc535206352385a46 (diff) | |
download | jenkins.debian.net-51680b6ebb645d37ebdfcd122ca163b3a638aefa.tar.xz |
files copied from https://git-tails.immerda.ch/tails - many thanks to the tails developers for their nice work and documentation of it - these files have been released under the GNU General Public License version 3 or (at your option) any later version
features/images has been omitted
Diffstat (limited to 'features/encryption.feature')
-rw-r--r-- | features/encryption.feature | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/features/encryption.feature b/features/encryption.feature new file mode 100644 index 00000000..2f30d2ad --- /dev/null +++ b/features/encryption.feature @@ -0,0 +1,31 @@ +@product +Feature: Encryption and verification using GnuPG + As a Tails user + I want to be able to easily encrypt and sign messages using GnuPG + And decrypt and verify GnuPG blocks + + Background: + Given a computer + And I start Tails from DVD with network unplugged and I login + And I generate an OpenPGP key named "test" with password "asdf" + And I save the state so the background can be restored next scenario + + Scenario: Encryption and decryption using Tails OpenPGP Applet + When I type a message into gedit + And I encrypt the message using my OpenPGP key + Then I can decrypt the encrypted message + + Scenario: Signing and verification using Tails OpenPGP Applet + When I type a message into gedit + And I sign the message using my OpenPGP key + Then I can verify the message's signature + + Scenario: Encryption/signing and decryption/verification using Tails OpenPGP Applet + When I type a message into gedit + And I both encrypt and sign the message using my OpenPGP key + Then I can decrypt and verify the encrypted message + + Scenario: Symmetric encryption and decryption using Tails OpenPGP Applet + When I type a message into gedit + And I symmetrically encrypt the message with password "asdf" + Then I can decrypt the encrypted message |