totpSecret property

  1. @TagNumber.new(12)
String get totpSecret

An Implementation of RFC 6238 is used, with HMAC-SHA-1 and time-step of 30 seconds. Currently no other options are supported, and if anything different is used the validation will fail.

Implementation

@$pb.TagNumber(12)
$core.String get totpSecret => $_getSZ(10);
  1. @TagNumber.new(12)
set totpSecret (String value)

Implementation

@$pb.TagNumber(12)
set totpSecret($core.String value) => $_setString(10, value);