RDSEncryptionKey constructor

RDSEncryptionKey(
  1. int encryptionId,
  2. int rotateRight,
  3. int startBit,
  4. int xorValue,
)

Creates a new instance.

  • encryptionId Id of encryption key within the list.
  • rotateRight Rotate Right used for bit manipulations as a part of encryption process.
  • startBit Start Bit used for bit manipulations as a part of encryption process.
  • xorValue XOR Value used for bit manipulations as a part of encryption process.

Implementation

RDSEncryptionKey(this.encryptionId, this.rotateRight, this.startBit, this.xorValue);