├── .flake8 ├── .github ├── ISSUE_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── macOS.yml │ ├── source-package.yml │ ├── ubuntu.yml │ └── windows.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .python-version ├── COPYING ├── MANIFEST.in ├── NEWS ├── README.adoc ├── doc ├── Development.adoc ├── Device_Permissions.adoc ├── Library_Usage.adoc └── Scripting.adoc ├── docs ├── Makefile ├── conf.py ├── favicon.ico ├── index.rst └── make.bat ├── examples ├── README.adoc ├── piv_certificate.py ├── yubiotp_batch.py └── yubiotp_batch_nfc.py ├── generate-man.py ├── man └── ykman.1 ├── mypy.ini ├── pyproject.toml ├── resources ├── macos │ ├── distribution.xml │ ├── make_pkg.sh │ ├── make_release.sh │ ├── pkg_scripts │ │ └── preinstall │ └── ykman.entitlements └── win │ ├── make_msi.ps1 │ ├── make_release.ps1 │ ├── ykman.wxs.in │ ├── yubico-msi-background.png │ └── yubico-msi-y-banner.png ├── tests ├── __init__.py ├── conftest.py ├── device │ ├── __init__.py │ ├── cli │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── piv │ │ │ ├── __init__.py │ │ │ ├── conftest.py │ │ │ ├── test_fips.py │ │ │ ├── test_generate_cert_and_csr.py │ │ │ ├── test_key_management.py │ │ │ ├── test_management_key.py │ │ │ ├── test_misc.py │ │ │ ├── test_pin_puk.py │ │ │ ├── test_read_write_object.py │ │ │ └── util.py │ │ ├── test_config.py │ │ ├── test_hsmauth.py │ │ ├── test_misc.py │ │ ├── test_oath.py │ │ ├── test_openpgp.py │ │ ├── test_otp.py │ │ └── test_securitydomain.py │ ├── condition.py │ ├── conftest.py │ ├── test_ccid.py │ ├── test_fips_u2f_commands.py │ ├── test_hsmauth.py │ ├── test_interfaces.py │ ├── test_oath.py │ ├── test_openpgp.py │ ├── test_otp.py │ ├── test_piv.py │ ├── test_scp.py │ └── test_securitydomain.py ├── files │ ├── rsa_1024_key.pem │ ├── rsa_2048_cert.der │ ├── rsa_2048_cert.pem │ ├── rsa_2048_cert_metadata.pem │ ├── rsa_2048_key.pem │ ├── rsa_2048_key_cert.pfx │ ├── rsa_2048_key_cert_encrypted.pfx │ ├── rsa_2048_key_encrypted.pem │ └── scp │ │ ├── .gitignore │ │ ├── cert.ca-kloc.ecdsa.pem │ │ ├── cert.ka-kloc.ecdsa.pem │ │ ├── cert.oce.ecka.pem │ │ ├── certs.oce.pem │ │ ├── generate_files.sh │ │ ├── oce.pfx │ │ └── sk.oce.ecka.pem ├── test_core.py ├── test_device.py ├── test_hsmauth.py ├── test_management.py ├── test_oath.py ├── test_piv.py ├── test_scancodes.py ├── test_util.py └── util.py ├── uv.lock ├── version_info.txt.in ├── ykman.exe.manifest ├── ykman.spec ├── ykman ├── __init__.py ├── _cli │ ├── __init__.py │ ├── __main__.py │ ├── apdu.py │ ├── config.py │ ├── fido.py │ ├── hsmauth.py │ ├── info.py │ ├── oath.py │ ├── openpgp.py │ ├── otp.py │ ├── piv.py │ ├── script.py │ ├── securitydomain.py │ └── util.py ├── base.py ├── device.py ├── diagnostics.py ├── fido.py ├── hid │ ├── __init__.py │ ├── base.py │ ├── fido.py │ ├── freebsd.py │ ├── linux.py │ ├── macos.py │ └── windows.py ├── hsmauth.py ├── logging.py ├── logging_setup.py ├── oath.py ├── openpgp.py ├── otp.py ├── pcsc │ └── __init__.py ├── piv.py ├── py.typed ├── scancodes │ ├── __init__.py │ ├── bepo.py │ ├── de.py │ ├── fr.py │ ├── it.py │ ├── modhex.py │ ├── norman.py │ ├── uk.py │ └── us.py ├── scripting.py ├── settings.py └── util.py └── yubikit ├── __init__.py ├── core ├── __init__.py ├── fido.py ├── otp.py └── smartcard │ ├── __init__.py │ └── scp.py ├── hsmauth.py ├── logging.py ├── management.py ├── oath.py ├── openpgp.py ├── piv.py ├── py.typed ├── securitydomain.py ├── support.py └── yubiotp.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/macOS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/workflows/macOS.yml -------------------------------------------------------------------------------- /.github/workflows/source-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/workflows/source-package.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/workflows/ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.14.2 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/COPYING -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/NEWS -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/README.adoc -------------------------------------------------------------------------------- /doc/Development.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/doc/Development.adoc -------------------------------------------------------------------------------- /doc/Device_Permissions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/doc/Device_Permissions.adoc -------------------------------------------------------------------------------- /doc/Library_Usage.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/doc/Library_Usage.adoc -------------------------------------------------------------------------------- /doc/Scripting.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/doc/Scripting.adoc -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/examples/README.adoc -------------------------------------------------------------------------------- /examples/piv_certificate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/examples/piv_certificate.py -------------------------------------------------------------------------------- /examples/yubiotp_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/examples/yubiotp_batch.py -------------------------------------------------------------------------------- /examples/yubiotp_batch_nfc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/examples/yubiotp_batch_nfc.py -------------------------------------------------------------------------------- /generate-man.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/generate-man.py -------------------------------------------------------------------------------- /man/ykman.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/man/ykman.1 -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/mypy.ini -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/pyproject.toml -------------------------------------------------------------------------------- /resources/macos/distribution.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/macos/distribution.xml -------------------------------------------------------------------------------- /resources/macos/make_pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/macos/make_pkg.sh -------------------------------------------------------------------------------- /resources/macos/make_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/macos/make_release.sh -------------------------------------------------------------------------------- /resources/macos/pkg_scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/macos/pkg_scripts/preinstall -------------------------------------------------------------------------------- /resources/macos/ykman.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/macos/ykman.entitlements -------------------------------------------------------------------------------- /resources/win/make_msi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/win/make_msi.ps1 -------------------------------------------------------------------------------- /resources/win/make_release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/win/make_release.ps1 -------------------------------------------------------------------------------- /resources/win/ykman.wxs.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/win/ykman.wxs.in -------------------------------------------------------------------------------- /resources/win/yubico-msi-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/win/yubico-msi-background.png -------------------------------------------------------------------------------- /resources/win/yubico-msi-y-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/resources/win/yubico-msi-y-banner.png -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/device/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/device/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/device/cli/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/conftest.py -------------------------------------------------------------------------------- /tests/device/cli/piv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/device/cli/piv/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/conftest.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_fips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_fips.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_generate_cert_and_csr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_generate_cert_and_csr.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_key_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_key_management.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_management_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_management_key.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_misc.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_pin_puk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_pin_puk.py -------------------------------------------------------------------------------- /tests/device/cli/piv/test_read_write_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/test_read_write_object.py -------------------------------------------------------------------------------- /tests/device/cli/piv/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/piv/util.py -------------------------------------------------------------------------------- /tests/device/cli/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_config.py -------------------------------------------------------------------------------- /tests/device/cli/test_hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_hsmauth.py -------------------------------------------------------------------------------- /tests/device/cli/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_misc.py -------------------------------------------------------------------------------- /tests/device/cli/test_oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_oath.py -------------------------------------------------------------------------------- /tests/device/cli/test_openpgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_openpgp.py -------------------------------------------------------------------------------- /tests/device/cli/test_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_otp.py -------------------------------------------------------------------------------- /tests/device/cli/test_securitydomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/cli/test_securitydomain.py -------------------------------------------------------------------------------- /tests/device/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/condition.py -------------------------------------------------------------------------------- /tests/device/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/conftest.py -------------------------------------------------------------------------------- /tests/device/test_ccid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_ccid.py -------------------------------------------------------------------------------- /tests/device/test_fips_u2f_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_fips_u2f_commands.py -------------------------------------------------------------------------------- /tests/device/test_hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_hsmauth.py -------------------------------------------------------------------------------- /tests/device/test_interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_interfaces.py -------------------------------------------------------------------------------- /tests/device/test_oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_oath.py -------------------------------------------------------------------------------- /tests/device/test_openpgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_openpgp.py -------------------------------------------------------------------------------- /tests/device/test_otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_otp.py -------------------------------------------------------------------------------- /tests/device/test_piv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_piv.py -------------------------------------------------------------------------------- /tests/device/test_scp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_scp.py -------------------------------------------------------------------------------- /tests/device/test_securitydomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/device/test_securitydomain.py -------------------------------------------------------------------------------- /tests/files/rsa_1024_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_1024_key.pem -------------------------------------------------------------------------------- /tests/files/rsa_2048_cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_cert.der -------------------------------------------------------------------------------- /tests/files/rsa_2048_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_cert.pem -------------------------------------------------------------------------------- /tests/files/rsa_2048_cert_metadata.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_cert_metadata.pem -------------------------------------------------------------------------------- /tests/files/rsa_2048_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_key.pem -------------------------------------------------------------------------------- /tests/files/rsa_2048_key_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_key_cert.pfx -------------------------------------------------------------------------------- /tests/files/rsa_2048_key_cert_encrypted.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_key_cert_encrypted.pfx -------------------------------------------------------------------------------- /tests/files/rsa_2048_key_encrypted.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/rsa_2048_key_encrypted.pem -------------------------------------------------------------------------------- /tests/files/scp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /tests/files/scp/cert.ca-kloc.ecdsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/cert.ca-kloc.ecdsa.pem -------------------------------------------------------------------------------- /tests/files/scp/cert.ka-kloc.ecdsa.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/cert.ka-kloc.ecdsa.pem -------------------------------------------------------------------------------- /tests/files/scp/cert.oce.ecka.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/cert.oce.ecka.pem -------------------------------------------------------------------------------- /tests/files/scp/certs.oce.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/certs.oce.pem -------------------------------------------------------------------------------- /tests/files/scp/generate_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/generate_files.sh -------------------------------------------------------------------------------- /tests/files/scp/oce.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/oce.pfx -------------------------------------------------------------------------------- /tests/files/scp/sk.oce.ecka.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/files/scp/sk.oce.ecka.pem -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_device.py -------------------------------------------------------------------------------- /tests/test_hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_hsmauth.py -------------------------------------------------------------------------------- /tests/test_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_management.py -------------------------------------------------------------------------------- /tests/test_oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_oath.py -------------------------------------------------------------------------------- /tests/test_piv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_piv.py -------------------------------------------------------------------------------- /tests/test_scancodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_scancodes.py -------------------------------------------------------------------------------- /tests/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/test_util.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/tests/util.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/uv.lock -------------------------------------------------------------------------------- /version_info.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/version_info.txt.in -------------------------------------------------------------------------------- /ykman.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman.exe.manifest -------------------------------------------------------------------------------- /ykman.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman.spec -------------------------------------------------------------------------------- /ykman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/__init__.py -------------------------------------------------------------------------------- /ykman/_cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/__init__.py -------------------------------------------------------------------------------- /ykman/_cli/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/__main__.py -------------------------------------------------------------------------------- /ykman/_cli/apdu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/apdu.py -------------------------------------------------------------------------------- /ykman/_cli/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/config.py -------------------------------------------------------------------------------- /ykman/_cli/fido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/fido.py -------------------------------------------------------------------------------- /ykman/_cli/hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/hsmauth.py -------------------------------------------------------------------------------- /ykman/_cli/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/info.py -------------------------------------------------------------------------------- /ykman/_cli/oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/oath.py -------------------------------------------------------------------------------- /ykman/_cli/openpgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/openpgp.py -------------------------------------------------------------------------------- /ykman/_cli/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/otp.py -------------------------------------------------------------------------------- /ykman/_cli/piv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/piv.py -------------------------------------------------------------------------------- /ykman/_cli/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/script.py -------------------------------------------------------------------------------- /ykman/_cli/securitydomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/securitydomain.py -------------------------------------------------------------------------------- /ykman/_cli/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/_cli/util.py -------------------------------------------------------------------------------- /ykman/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/base.py -------------------------------------------------------------------------------- /ykman/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/device.py -------------------------------------------------------------------------------- /ykman/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/diagnostics.py -------------------------------------------------------------------------------- /ykman/fido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/fido.py -------------------------------------------------------------------------------- /ykman/hid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/__init__.py -------------------------------------------------------------------------------- /ykman/hid/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/base.py -------------------------------------------------------------------------------- /ykman/hid/fido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/fido.py -------------------------------------------------------------------------------- /ykman/hid/freebsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/freebsd.py -------------------------------------------------------------------------------- /ykman/hid/linux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/linux.py -------------------------------------------------------------------------------- /ykman/hid/macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/macos.py -------------------------------------------------------------------------------- /ykman/hid/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hid/windows.py -------------------------------------------------------------------------------- /ykman/hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/hsmauth.py -------------------------------------------------------------------------------- /ykman/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/logging.py -------------------------------------------------------------------------------- /ykman/logging_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/logging_setup.py -------------------------------------------------------------------------------- /ykman/oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/oath.py -------------------------------------------------------------------------------- /ykman/openpgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/openpgp.py -------------------------------------------------------------------------------- /ykman/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/otp.py -------------------------------------------------------------------------------- /ykman/pcsc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/pcsc/__init__.py -------------------------------------------------------------------------------- /ykman/piv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/piv.py -------------------------------------------------------------------------------- /ykman/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ykman/scancodes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/__init__.py -------------------------------------------------------------------------------- /ykman/scancodes/bepo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/bepo.py -------------------------------------------------------------------------------- /ykman/scancodes/de.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/de.py -------------------------------------------------------------------------------- /ykman/scancodes/fr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/fr.py -------------------------------------------------------------------------------- /ykman/scancodes/it.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/it.py -------------------------------------------------------------------------------- /ykman/scancodes/modhex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/modhex.py -------------------------------------------------------------------------------- /ykman/scancodes/norman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/norman.py -------------------------------------------------------------------------------- /ykman/scancodes/uk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/uk.py -------------------------------------------------------------------------------- /ykman/scancodes/us.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scancodes/us.py -------------------------------------------------------------------------------- /ykman/scripting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/scripting.py -------------------------------------------------------------------------------- /ykman/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/settings.py -------------------------------------------------------------------------------- /ykman/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/ykman/util.py -------------------------------------------------------------------------------- /yubikit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/__init__.py -------------------------------------------------------------------------------- /yubikit/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/core/__init__.py -------------------------------------------------------------------------------- /yubikit/core/fido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/core/fido.py -------------------------------------------------------------------------------- /yubikit/core/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/core/otp.py -------------------------------------------------------------------------------- /yubikit/core/smartcard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/core/smartcard/__init__.py -------------------------------------------------------------------------------- /yubikit/core/smartcard/scp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/core/smartcard/scp.py -------------------------------------------------------------------------------- /yubikit/hsmauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/hsmauth.py -------------------------------------------------------------------------------- /yubikit/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/logging.py -------------------------------------------------------------------------------- /yubikit/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/management.py -------------------------------------------------------------------------------- /yubikit/oath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/oath.py -------------------------------------------------------------------------------- /yubikit/openpgp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/openpgp.py -------------------------------------------------------------------------------- /yubikit/piv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/piv.py -------------------------------------------------------------------------------- /yubikit/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yubikit/securitydomain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/securitydomain.py -------------------------------------------------------------------------------- /yubikit/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/support.py -------------------------------------------------------------------------------- /yubikit/yubiotp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikey-manager/HEAD/yubikit/yubiotp.py --------------------------------------------------------------------------------