Class EncryptionTransformer

Encryption transformer. Values are transformed using repeated shuffle and xor operations, similar to those found in many cryptography algorithms, particularly AES. While sufficient for obfuscation of numeric sequences (e.g., serial number generation, below), if true format-preserving encryption is required, a more robust algorithm such as FF1 is recommended. Furthermore, no work has been done to mitigate timing attacks for key detection.

The purpose of the encryption transformer is to generate pseudo-random values in a deterministic manner to obscure the sequence of values generated over time. A typical example is for serial number generation, where knowledge of the sequence can infer production volumes (e.g., serial number 1000 implies that at least 1,000 units have been manufactured) or can be used in counterfeiting (e.g., a counterfeiter can generate serial numbers 1001, 1002, ... with reasonable confidence that they would be valid if queried).

The domain and the tweak together determine the encryption key, which in turn determines the number of rounds of shuffle and xor operations. The minimum number of rounds is 4, except where the domain is less than or equal to 256, which results in single-byte operations. To ensure that the operations are effective for single-byte domains, the number of rounds is 1 and only the xor operation is applied (shuffling a single byte is an identity operation).

Another exception is when there is a tweak value of 0; this results in identity operations where the output value is identical to the input value, as no shuffle or xor takes place.

Hierarchy (View Summary)

Constructors

Accessors

Methods

Constructors

Accessors

  • get domain(): bigint
  • Get the domain.

    Returns bigint

Methods

  • Do the work of transforming a value forward.

    Parameters

    • value: bigint

      Value.

    Returns bigint

    Transformed value.

  • Do the work of transforming a value in reverse.

    Parameters

    • transformedValue: bigint

      Transformed value.

    Returns bigint

    Value.

  • Transform a value in reverse.

    Parameters

    • transformedValue: number | bigint

      Transformed value.

    Returns bigint

    Value.