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

        public PublicKey()
        {
            rsaKeyModulus        = new RSAKeyModulus();
            rsaKeyPublicExponent = new RSAKeyPublicExponent();
        }
Exemplo n.º 4
0
 public PublicKey()
 {
     rsaKeyModulus = new RSAKeyModulus();
     rsaKeyPublicExponent = new RSAKeyPublicExponent();
 }