mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
124 lines
4.0 KiB
Dart
124 lines
4.0 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'models.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$OathCredentialImpl _$$OathCredentialImplFromJson(Map<String, dynamic> json) =>
|
|
_$OathCredentialImpl(
|
|
json['device_id'] as String,
|
|
json['id'] as String,
|
|
const _IssuerConverter().fromJson(json['issuer'] as String?),
|
|
json['name'] as String,
|
|
$enumDecode(_$OathTypeEnumMap, json['oath_type']),
|
|
json['period'] as int,
|
|
json['touch_required'] as bool,
|
|
);
|
|
|
|
Map<String, dynamic> _$$OathCredentialImplToJson(
|
|
_$OathCredentialImpl instance) =>
|
|
<String, dynamic>{
|
|
'device_id': instance.deviceId,
|
|
'id': instance.id,
|
|
'issuer': const _IssuerConverter().toJson(instance.issuer),
|
|
'name': instance.name,
|
|
'oath_type': _$OathTypeEnumMap[instance.oathType]!,
|
|
'period': instance.period,
|
|
'touch_required': instance.touchRequired,
|
|
};
|
|
|
|
const _$OathTypeEnumMap = {
|
|
OathType.hotp: 16,
|
|
OathType.totp: 32,
|
|
};
|
|
|
|
_$OathCodeImpl _$$OathCodeImplFromJson(Map<String, dynamic> json) =>
|
|
_$OathCodeImpl(
|
|
json['value'] as String,
|
|
json['valid_from'] as int,
|
|
json['valid_to'] as int,
|
|
);
|
|
|
|
Map<String, dynamic> _$$OathCodeImplToJson(_$OathCodeImpl instance) =>
|
|
<String, dynamic>{
|
|
'value': instance.value,
|
|
'valid_from': instance.validFrom,
|
|
'valid_to': instance.validTo,
|
|
};
|
|
|
|
_$OathPairImpl _$$OathPairImplFromJson(Map<String, dynamic> json) =>
|
|
_$OathPairImpl(
|
|
OathCredential.fromJson(json['credential'] as Map<String, dynamic>),
|
|
json['code'] == null
|
|
? null
|
|
: OathCode.fromJson(json['code'] as Map<String, dynamic>),
|
|
);
|
|
|
|
Map<String, dynamic> _$$OathPairImplToJson(_$OathPairImpl instance) =>
|
|
<String, dynamic>{
|
|
'credential': instance.credential,
|
|
'code': instance.code,
|
|
};
|
|
|
|
_$OathStateImpl _$$OathStateImplFromJson(Map<String, dynamic> json) =>
|
|
_$OathStateImpl(
|
|
json['device_id'] as String,
|
|
Version.fromJson(json['version'] as List<dynamic>),
|
|
hasKey: json['has_key'] as bool,
|
|
remembered: json['remembered'] as bool,
|
|
locked: json['locked'] as bool,
|
|
keystore: $enumDecode(_$KeystoreStateEnumMap, json['keystore']),
|
|
);
|
|
|
|
Map<String, dynamic> _$$OathStateImplToJson(_$OathStateImpl instance) =>
|
|
<String, dynamic>{
|
|
'device_id': instance.deviceId,
|
|
'version': instance.version,
|
|
'has_key': instance.hasKey,
|
|
'remembered': instance.remembered,
|
|
'locked': instance.locked,
|
|
'keystore': _$KeystoreStateEnumMap[instance.keystore]!,
|
|
};
|
|
|
|
const _$KeystoreStateEnumMap = {
|
|
KeystoreState.unknown: 'unknown',
|
|
KeystoreState.allowed: 'allowed',
|
|
KeystoreState.failed: 'failed',
|
|
};
|
|
|
|
_$CredentialDataImpl _$$CredentialDataImplFromJson(Map<String, dynamic> json) =>
|
|
_$CredentialDataImpl(
|
|
issuer: json['issuer'] as String?,
|
|
name: json['name'] as String,
|
|
secret: json['secret'] as String,
|
|
oathType: $enumDecodeNullable(_$OathTypeEnumMap, json['oath_type']) ??
|
|
defaultOathType,
|
|
hashAlgorithm:
|
|
$enumDecodeNullable(_$HashAlgorithmEnumMap, json['hash_algorithm']) ??
|
|
defaultHashAlgorithm,
|
|
digits: json['digits'] as int? ?? defaultDigits,
|
|
period: json['period'] as int? ?? defaultPeriod,
|
|
counter: json['counter'] as int? ?? defaultCounter,
|
|
);
|
|
|
|
Map<String, dynamic> _$$CredentialDataImplToJson(
|
|
_$CredentialDataImpl instance) =>
|
|
<String, dynamic>{
|
|
'issuer': instance.issuer,
|
|
'name': instance.name,
|
|
'secret': instance.secret,
|
|
'oath_type': _$OathTypeEnumMap[instance.oathType]!,
|
|
'hash_algorithm': _$HashAlgorithmEnumMap[instance.hashAlgorithm]!,
|
|
'digits': instance.digits,
|
|
'period': instance.period,
|
|
'counter': instance.counter,
|
|
};
|
|
|
|
const _$HashAlgorithmEnumMap = {
|
|
HashAlgorithm.sha1: 1,
|
|
HashAlgorithm.sha256: 2,
|
|
HashAlgorithm.sha512: 3,
|
|
};
|