plain method

Plaintext plain(
  1. String value
)

Creates a new Plaintext object from a string.

The value parameter specifies the string to encrypt.

Implementation

Plaintext plain(String value) => Plaintext.withValue(backend, value);