Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
602 B

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  1. package com.ugsbo.Crypto;
  2. import java.io.UnsupportedEncodingException;
  3. import java.security.GeneralSecurityException;
  4. public class Crypto_Logic {
  5. public static void main(String[] args) throws UnsupportedEncodingException, GeneralSecurityException {
  6. // TODO Auto-generated method stub
  7. String test = "Hallo, mein Name ist Christian";
  8. Payload temp = new Payload();
  9. temp.setOffen(test);
  10. temp.setPassword("geheim");
  11. temp.verschlüsseln();
  12. System.out.println(temp.getVerschlüsselt());
  13. temp.entschlüsseln();
  14. System.out.println(temp.getOffen());
  15. }
  16. }