Exemplo n.º 1
0
 public Tritemius(Alphabets.Alphabet _alphabet, int _a, int _b, int _c)
 {
     alphabet = _alphabet;
     A = _a;
     B = _b;
     C = _c;
     stringKey = false;
 }
Exemplo n.º 2
0
 public XOREncryption(string gammaKey, Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
     this.gammaKey = gammaKey;
 }
Exemplo n.º 3
0
 public Tritemius(Alphabets.Alphabet _alphabet, String _key)
 {
     alphabet = _alphabet;
     Key = _key;
     stringKey = true;
 }
Exemplo n.º 4
0
 public RSA(Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
     PublicKey = new int[2];
     privateKey = new int[2];
 }
Exemplo n.º 5
0
 public Caesar(int key, Alphabets.Alphabet alphabet):base()
 {
     this.key = key;
     this.alphabet = alphabet;
 }
Exemplo n.º 6
0
 public ElHamal(Alphabets.Alphabet alphabet)
 {
     this.alphabet = alphabet;
 }
Exemplo n.º 7
0
 public Polinom(Alphabets.Alphabet alphabet, Mathematics.Function function)
 {
     this.alphabet = alphabet;
     this.function = function;
 }