コード例 #1
0
 public PublicKey(byte[] value)
 {
     rsaKeyModulus        = new RSAKeyModulus(ConvertionClass.arrayCopy(value, 0, 128));
     rsaKeyPublicExponent = new RSAKeyPublicExponent(ConvertionClass.arrayCopy(value, 128, 8));
 }
コード例 #2
0
ファイル: PublicKey.cs プロジェクト: ShunkevichDV/FIS
 public PublicKey(byte[] value)
 {
     rsaKeyModulus = new RSAKeyModulus(ConvertionClass.arrayCopy(value, 0, 128));
     rsaKeyPublicExponent = new RSAKeyPublicExponent(ConvertionClass.arrayCopy(value, 128, 8));
 }
コード例 #3
0
        }                                                             //RSAKeyPublicExponent

        public PublicKey()
        {
            rsaKeyModulus        = new RSAKeyModulus();
            rsaKeyPublicExponent = new RSAKeyPublicExponent();
        }
コード例 #4
0
ファイル: PublicKey.cs プロジェクト: ShunkevichDV/FIS
 public PublicKey()
 {
     rsaKeyModulus = new RSAKeyModulus();
     rsaKeyPublicExponent = new RSAKeyPublicExponent();
 }