SymmetricCipher constructor

SymmetricCipher(
  1. InputSymmetricCipher input
)

Constructs a SymmetricCipher with the given input parameters.

Implementation

SymmetricCipher(InputSymmetricCipher input)
    : _key = input.key,
      super(input.parent);