Source code for privacyidea.lib.containers.yubikey

# (c) NetKnights GmbH 2024,  https://netknights.it
#
# This code is free software; you can redistribute it and/or
# modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
# as published by the Free Software Foundation; either
# version 3 of the License, or any later version.
#
# This code is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU AFFERO GENERAL PUBLIC LICENSE for more details.
#
# You should have received a copy of the GNU Affero General Public
# License along with this program.  If not, see <http://www.gnu.org/licenses/>.
#
# SPDX-FileCopyrightText: 2024 Nils Behlen <nils.behlen@netknights.it>
# SPDX-FileCopyrightText: 2024 Jelina Unger <jelina.unger@netknights.it>
# SPDX-License-Identifier: AGPL-3.0-or-later
#
import logging

from privacyidea.lib import _
from privacyidea.lib.containerclass import TokenContainerClass

log = logging.getLogger(__name__)


[docs] class YubikeyContainer(TokenContainerClass): options = {} def __init__(self, db_container): super().__init__(db_container)
[docs] @classmethod def get_class_type(cls) -> str: """ Returns the type of the container class. """ return "yubikey"
[docs] @classmethod def get_supported_token_types(cls) -> list[str]: """ Returns the token types that are supported by the container class. """ supported_token_types = ["hotp", "certificate", "webauthn", "yubico", "yubikey", "passkey"] supported_token_types.sort() return supported_token_types
[docs] @classmethod def get_class_prefix(cls) -> str: """ Returns the container class specific prefix for the serial. """ return "YUBI"
[docs] @classmethod def get_class_description(cls) -> str: """ Returns a description of the container class. """ return _("Yubikey hardware device that can hold HOTP, certificate and webauthn token")