sharedSecretUint8List static method

SyncCredentials sharedSecretUint8List(
  1. Uint8List data
)

Shared secret authentication using raw bytes.

The secret must be pre-shared with the server.

Implementation

static SyncCredentials sharedSecretUint8List(Uint8List data) =>
    SyncCredentialsSecret._(
        OBXSyncCredentialsType.SHARED_SECRET_SIPPED, data);