View Javadoc
1   package civitas.crypto.publickeyciphertext.tests;
2   
3   import civitas.crypto.publickeyciphertext.PublicKeyCiphertext;
4   
5   public interface PublicKeyCiphertextTestData {
6   	byte[] SOMESTRING_ENCRYPTED_BYTES = "SOMESTRING encrypted".getBytes();
7   	PublicKeyCiphertext SOMESTRING_ENCRYPTED = new PublicKeyCiphertext(SOMESTRING_ENCRYPTED_BYTES);
8   }