Edouard@315: #!/bin/bash Edouard@315: Edouard@315: # Use this to generate test msg.asc and signature.asc Edouard@315: Edouard@315: # Keys pair are : Edouard@315: # Edouard@315: # pEp Test Alice (test key don't use) Edouard@315: # 6FF00E97 Edouard@315: # Edouard@315: # pEp Test Bob (test key, don't use)   Edouard@315: # C9C2EE39 Edouard@315: # Edouard@315: # pEp Test John (test key, don't use) Edouard@315: # 70DCF575 Edouard@315: Edouard@315: # msg.asc from msg.c Edouard@315: # Bob sends a message to Alice and John Edouard@315: gpg -u C9C2EE39 -s -e -r 6FF00E97 -r 70DCF575 --armor msg Edouard@315: Edouard@315: # signature.asc from t1.txt Edouard@315: # Bob signs the message Edouard@315: gpg --output signature.asc -u C9C2EE39 -sb --armor t1.txt Edouard@315: