totpSecret property

  1. @TagNumber.new(8)
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(8)
$core.String get totpSecret => $_getSZ(6);
  1. @TagNumber.new(8)
set totpSecret (String value)

Implementation

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