nacl_secret_box method
Encrypt and authenticate message using nonce and secret key.
Implementation
Future<ResultOfNaclBox> nacl_secret_box(ParamsOfNaclSecretBox params) async {
final res =
await _tonCore.request('crypto.nacl_secret_box', params.toString());
return ResultOfNaclBox.fromMap(res);
}