Exemple #1
0
 public PublicKey(byte[] value)
 {
     rsaKeyModulus        = new RSAKeyModulus(ConvertionClass.arrayCopy(value, 0, 128));
     rsaKeyPublicExponent = new RSAKeyPublicExponent(ConvertionClass.arrayCopy(value, 128, 8));
 }
Exemple #2
0
 public PublicKey(byte[] value)
 {
     rsaKeyModulus = new RSAKeyModulus(ConvertionClass.arrayCopy(value, 0, 128));
     rsaKeyPublicExponent = new RSAKeyPublicExponent(ConvertionClass.arrayCopy(value, 128, 8));
 }
Exemple #3
0
        }                                                             //RSAKeyPublicExponent

        public PublicKey()
        {
            rsaKeyModulus        = new RSAKeyModulus();
            rsaKeyPublicExponent = new RSAKeyPublicExponent();
        }
Exemple #4
0
 public PublicKey()
 {
     rsaKeyModulus = new RSAKeyModulus();
     rsaKeyPublicExponent = new RSAKeyPublicExponent();
 }