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