dispose method

void dispose()

Shortcut to dispose both contained keys.

Simply calls SecureKey.dispose on rx and tx

Implementation

void dispose() {
  rx.dispose();
  tx.dispose();
}