Advertisement
Krefeld187

Untitled

Mar 27th, 2021
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. import static java.lang.Math.*;
  2. import java.util.Random;
  3. import java.io.Console;
  4. import java.io.File;
  5. import java.io.FileNotFoundException;
  6. import java.util.*;
  7. import java.math.*;
  8. import java.math.BigInteger;
  9. public class RSA3
  10. {
  11.     //String in ein char array
  12.     static char[]  auslesen(String str)
  13.     {
  14.         char temp [] = new char[str.length()];
  15.         for(int i = str.length()-1; i >= 0; --i)
  16.         {
  17.             temp[i] = str.charAt(i);
  18.         }
  19.         return temp;
  20.     }
  21.  
  22.     // groesster gemeinsamer Teiler
  23.     public static BigI
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement