hash property

  1. @TagNumber(2)
String get hash

Encoded hash of a password in Modular Crypt Format: https://zitadel.com/docs/concepts/architecture/secrets#hashed-secrets.

Implementation

@$pb.TagNumber(2)
$core.String get hash => $_getSZ(1);
  1. @TagNumber(2)
set hash (String v)

Implementation

@$pb.TagNumber(2)
set hash($core.String v) { $_setString(1, v); }