mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-23 09:56:23 +03:00
68 lines
2.7 KiB
Dart
68 lines
2.7 KiB
Dart
/*
|
|
* Copyright (C) 2022-2023 Yubico.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
const _prefix = 'piv.keys';
|
|
const _keyAction = '$_prefix.actions';
|
|
const _slotAction = '$_prefix.slot.actions';
|
|
|
|
// Key actions
|
|
const managePinAction = Key('$_keyAction.manage_pin');
|
|
const managePukAction = Key('$_keyAction.manage_puk');
|
|
const manageManagementKeyAction = Key('$_keyAction.manage_management_key');
|
|
const pinLockManagementKeyChip = Key('$_keyAction.pinlock_managementkey');
|
|
const resetAction = Key('$_keyAction.reset');
|
|
const setupMacOsAction = Key('$_keyAction.setup_macos');
|
|
|
|
// Slot actions
|
|
const generateAction = Key('$_slotAction.generate');
|
|
const importAction = Key('$_slotAction.import');
|
|
const exportAction = Key('$_slotAction.export');
|
|
const deleteAction = Key('$_slotAction.delete');
|
|
|
|
const saveButton = Key('$_prefix.save');
|
|
const deleteButton = Key('$_prefix.delete');
|
|
const unlockButton = Key('$_prefix.unlock');
|
|
const resetButton = Key('$_prefix.reset');
|
|
|
|
const managementKeyField = Key('$_prefix.management_key');
|
|
const managementKeyRefresh = Key('$_prefix.management_key_refresh');
|
|
|
|
const pinPukField = Key('$_prefix.pin_puk');
|
|
const newPinPukField = Key('$_prefix.new_pin_puk');
|
|
const confirmPinPukField = Key('$_prefix.confirm_pin_puk');
|
|
const subjectField = Key('$_prefix.subject');
|
|
|
|
const meatballButton9a = Key('$_prefix.9a.meatball.button');
|
|
const meatballButton9c = Key('$_prefix.9c.meatball.button');
|
|
const meatballButton9d = Key('$_prefix.9d.meatball.button');
|
|
const meatballButton9e = Key('$_prefix.9e.meatball.button');
|
|
|
|
const appListItem9a = Key('$_prefix.9a.applistitem');
|
|
const appListItem9c = Key('$_prefix.9c.applistitem');
|
|
const appListItem9d = Key('$_prefix.9d.applistitem');
|
|
const appListItem9e = Key('$_prefix.9e.applistitem');
|
|
|
|
// CertInfo body keys
|
|
|
|
const certInfoSubjectKey = Key('$_prefix.certInfo.subject');
|
|
const certInfoIssuerKey = Key('$_prefix.certInfo.issuer');
|
|
const certInfoSerialKey = Key('$_prefix.certInfo.serial');
|
|
const certInfoFingerprintKey = Key('$_prefix.certInfo.fingerprint');
|
|
const certInfoValidFromKey = Key('$_prefix.certInfo.validFrom');
|
|
const certInfoValidToKey = Key('$_prefix.certInfo.validTo');
|