예제 #1
0
 public Tritemius(Alphabets.Alphabet _alphabet, int _a, int _b, int _c)
 {
     alphabet = _alphabet;
     A = _a;
     B = _b;
     C = _c;
     stringKey = false;
 }
예제 #2
0
 public XOREncryption(string gammaKey, Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
     this.gammaKey = gammaKey;
 }
예제 #3
0
 public Tritemius(Alphabets.Alphabet _alphabet, String _key)
 {
     alphabet = _alphabet;
     Key = _key;
     stringKey = true;
 }
예제 #4
0
파일: RSA.cs 프로젝트: msCube/Scrambler
 public RSA(Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
     PublicKey = new int[2];
     privateKey = new int[2];
 }
예제 #5
0
파일: Caesar.cs 프로젝트: msCube/Scrambler
 public Caesar(int key, Alphabets.Alphabet alphabet):base()
 {
     this.key = key;
     this.alphabet = alphabet;
 }
예제 #6
0
파일: ElHamal.cs 프로젝트: msCube/Scrambler
 public ElHamal(Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
 }
예제 #7
0
파일: Polinom.cs 프로젝트: msCube/Scrambler
 public Polinom(Alphabets.Alphabet alphabet, Mathematics.Function function)
 {
     this.alphabet = alphabet;
     this.function = function;
 }