/** * @param initialisationVector * @param encryptedPrivateKeys */ public EncryptedPrivateKey(byte[] initialisationVector, byte[] encryptedPrivateKeys) { setInitialisationVector(initialisationVector); setEncryptedPrivateBytes(encryptedPrivateKeys); }
/** * Cloning constructor. * * @param encryptedPrivateKey EncryptedPrivateKey to clone. */ public EncryptedPrivateKey(EncryptedPrivateKey encryptedPrivateKey) { setInitialisationVector(encryptedPrivateKey.getInitialisationVector()); setEncryptedPrivateBytes(encryptedPrivateKey.getEncryptedBytes()); }