decryptData method

List<int> decryptData(
  1. List<int> encryptedData
)

Decrypts data using the negotiated symmetric cipher

Implementation

List<int> decryptData(List<int> encryptedData) {
  return symmetricHandler.decrypt(encryptedData);
}