mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-11-22 16:32:01 +03:00
39 lines
1.3 KiB
Dart
39 lines
1.3 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 = 'otp.keys';
|
|
const _keyAction = '$_prefix.actions';
|
|
const _slotAction = '$_prefix.slot.actions';
|
|
|
|
// Key actions
|
|
const swapSlots = Key('$_keyAction.swap_slots');
|
|
|
|
// Slot actions
|
|
const configureYubiOtp = Key('$_slotAction.configure_yubiotp');
|
|
const configureHotp = Key('$_slotAction.configure_hotp');
|
|
const configureStatic = Key('$_slotAction.configure_static');
|
|
const configureChalResp = Key('$_slotAction.configure_chal_resp');
|
|
const deleteAction = Key('$_slotAction.delete');
|
|
|
|
const saveButton = Key('$_prefix.save');
|
|
const deleteButton = Key('$_prefix.delete');
|
|
|
|
const secretField = Key('$_prefix.secret');
|
|
const publicIdField = Key('$_prefix.public_id');
|
|
const privateIdField = Key('$_prefix.private_id');
|