challengeResponseAsBytes property

List<int> challengeResponseAsBytes

Implementation

core.List<core.int> get challengeResponseAsBytes =>
    convert.base64.decode(challengeResponse!);
void challengeResponseAsBytes=(List<int> bytes_)

Implementation

set challengeResponseAsBytes(core.List<core.int> bytes_) {
  challengeResponse =
      convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}