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.

116 lines
2.7 KiB

  1. package ITsecAufgaben;
  2. import java.util.Scanner;
  3. public class ITsecAufgaben {
  4. public static void zehnteAufgabe() {
  5. // Methodenrumpf füllen
  6. }
  7. public static void neunteAufgabe() {
  8. // Methodenrumpf füllen
  9. }
  10. public static void achteAufgabe() {
  11. // Methodenrumpf füllen
  12. }
  13. public static void siebteAufgabe() {
  14. // Methodenrumpf füllen
  15. }
  16. public static void sechsteAufgabe() {
  17. // Methodenrumpf füllen
  18. }
  19. public static void fünfteAufgabe() {
  20. // Methodenrumpf füllen
  21. }
  22. public static void vierteAufgabe() {
  23. // Methodenrumpf füllen
  24. }
  25. public static void dritteAufgabe() {
  26. // Methodenrumpf füllen
  27. }
  28. public static void zweiteAufgabe() {
  29. System.out.println("\nBerechnen Sie RSA per Hand. Taschenrechner & Website erlaubt.\n");
  30. System.out.println("Gegeben sind: p = 13, q = 17, e = 11, P1 = 23");
  31. System.out.println("Geben Sie das Ergebnis für N, phiOfN, encKey, decKey & C1:\n"); // <-- hier ggf. refactoring
  32. boolean bool = true;
  33. int N = 0, phiOfN = 0, decKey = 0, C1 = 0, encKey = 0;
  34. // String encKey = "(221, 11)";
  35. Scanner in = new Scanner(System.in);
  36. while (bool) {
  37. System.out.println(
  38. "Ergebnisse für N, phiOfN, decKey, Cipher1 & encKey eingeben:\n Vorsicht: encKey besteht aus N & '?' angehangen ; alle Werte sind integer");
  39. System.out.println("N:");
  40. N = in.nextInt();
  41. System.out.println("phiOfN:");
  42. phiOfN = in.nextInt();
  43. System.out.println("decKey:");
  44. decKey = in.nextInt();
  45. System.out.println("C1:");
  46. C1 = in.nextInt();
  47. System.out.println("encKey:");
  48. encKey = in.nextInt();
  49. if (N == 221 && phiOfN == 192 && encKey == 22111 && decKey == 35 && C1 == 56) {
  50. System.out.println("\nRichtiges Ergebnis\n");
  51. } else {
  52. System.out.println("\nFalsches Ergebnis\n");
  53. }
  54. }
  55. in.close();
  56. }
  57. // kein äöüÄÖÜ
  58. public static void erstesQuiz() {
  59. System.out.println("debug: erstesQuiz() fängt an\n");
  60. System.out.println("Was ist die Definition von 'Schwachstelle'?\n");
  61. System.out.println(
  62. "\n1. Ein sicherheitsrelevanter technischer oder Prozess-Fehler.\n2. Ein Softwarefehler, der ausgenutzt werden kann\n3. Die Verse eines Menschen.\n\n 0 -> Lösung ; 42 -> naechste Aufgabe");
  63. Scanner in = new Scanner(System.in);
  64. int age = 1;
  65. while (age != 0) {
  66. age = in.nextInt();
  67. // if(age == 0) { break; }
  68. if (age == 1) {
  69. System.out.println("Richtig!\n");
  70. } else if (age == 0) {
  71. System.out.println("Auf Wiedersehen.");
  72. } else {
  73. System.out.println("Falsch.\n");
  74. }
  75. }
  76. in.close();
  77. System.out.println("\ndebug: erstesQuiz() fertig");
  78. }
  79. // für debugging & dev-test
  80. public static void main(String[] args) {
  81. // TODO Auto-generated method stub
  82. System.out.println("ITsec-main betreten\n\n");
  83. erstesQuiz();
  84. zweiteAufgabe();
  85. }
  86. }