cryptoSignInit static method

Pointer<Uint8> cryptoSignInit()

Implementation

static Pointer<Uint8> cryptoSignInit() {
  final _state = calloc<Uint8>(cryptoSignStatebytes);
  _cryptoSign.crypto_sign_init(_state).mustSucceed('crypto_sign_init');
  return _state;
}