tweakScalar property

Uint8List get tweakScalar

The scalar to tweak the internal key

Implementation

Uint8List get tweakScalar => _tweakScalarCache ??= tweakHash(
  Uint8List.fromList([
    ...internalKey.x,
    if (mast != null) ...mast!.hash,
  ]),
);