getPersonalKey method

ChaCha20Key getPersonalKey()

Retrieves the personal encryption key of the logged-in user.

Returns: A ChaCha20Key derived from the user's privateKey.

Implementation

ChaCha20Key getPersonalKey() {
  return ChaCha20Key.fromString(privateKey);
}