seedkeeper-manager 5.9.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- seedkeeper_manager-5.9.2.dist-info/METADATA +238 -0
- seedkeeper_manager-5.9.2.dist-info/RECORD +68 -0
- seedkeeper_manager-5.9.2.dist-info/WHEEL +4 -0
- seedkeeper_manager-5.9.2.dist-info/entry_points.txt +3 -0
- seedkeeper_manager-5.9.2.dist-info/licenses/COPYING +26 -0
- ykman/__init__.py +28 -0
- ykman/_cli/__init__.py +26 -0
- ykman/_cli/__main__.py +683 -0
- ykman/_cli/apdu.py +211 -0
- ykman/_cli/config.py +728 -0
- ykman/_cli/fido.py +989 -0
- ykman/_cli/hsmauth.py +860 -0
- ykman/_cli/info.py +215 -0
- ykman/_cli/oath.py +1051 -0
- ykman/_cli/openpgp.py +658 -0
- ykman/_cli/otp.py +956 -0
- ykman/_cli/piv.py +1559 -0
- ykman/_cli/script.py +107 -0
- ykman/_cli/securitydomain.py +447 -0
- ykman/_cli/util.py +468 -0
- ykman/base.py +87 -0
- ykman/device.py +345 -0
- ykman/diagnostics.py +247 -0
- ykman/fido.py +113 -0
- ykman/hid/__init__.py +101 -0
- ykman/hid/base.py +73 -0
- ykman/hid/fido.py +79 -0
- ykman/hid/freebsd.py +302 -0
- ykman/hid/linux.py +130 -0
- ykman/hid/macos.py +298 -0
- ykman/hid/windows.py +372 -0
- ykman/hsmauth.py +46 -0
- ykman/logging.py +89 -0
- ykman/logging_setup.py +66 -0
- ykman/oath.py +99 -0
- ykman/openpgp.py +156 -0
- ykman/otp.py +128 -0
- ykman/pcsc/__init__.py +284 -0
- ykman/piv.py +837 -0
- ykman/py.typed +0 -0
- ykman/scancodes/__init__.py +48 -0
- ykman/scancodes/bepo.py +134 -0
- ykman/scancodes/de.py +133 -0
- ykman/scancodes/fr.py +130 -0
- ykman/scancodes/it.py +137 -0
- ykman/scancodes/modhex.py +68 -0
- ykman/scancodes/norman.py +132 -0
- ykman/scancodes/uk.py +132 -0
- ykman/scancodes/us.py +132 -0
- ykman/scripting.py +257 -0
- ykman/settings.py +122 -0
- ykman/util.py +218 -0
- yubikit/__init__.py +31 -0
- yubikit/core/__init__.py +438 -0
- yubikit/core/fido.py +141 -0
- yubikit/core/otp.py +275 -0
- yubikit/core/smartcard/__init__.py +511 -0
- yubikit/core/smartcard/scp.py +375 -0
- yubikit/hsmauth.py +718 -0
- yubikit/logging.py +39 -0
- yubikit/management.py +772 -0
- yubikit/oath.py +566 -0
- yubikit/openpgp.py +1793 -0
- yubikit/piv.py +1537 -0
- yubikit/py.typed +0 -0
- yubikit/securitydomain.py +381 -0
- yubikit/support.py +611 -0
- yubikit/yubiotp.py +928 -0
|
@@ -0,0 +1,238 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seedkeeper-manager
|
|
3
|
+
Version: 5.9.2
|
|
4
|
+
Summary: Satochip fork of yubikey-manager: library and CLI for managing your YubiKey/Seedkeeper configuration. Drop-in replacement (same `yubikit`/`ykman` import names).
|
|
5
|
+
License: Copyright (c) 2015 Yubico AB
|
|
6
|
+
All rights reserved.
|
|
7
|
+
|
|
8
|
+
Redistribution and use in source and binary forms, with or
|
|
9
|
+
without modification, are permitted provided that the following
|
|
10
|
+
conditions are met:
|
|
11
|
+
|
|
12
|
+
1. Redistributions of source code must retain the above copyright
|
|
13
|
+
notice, this list of conditions and the following disclaimer.
|
|
14
|
+
2. Redistributions in binary form must reproduce the above
|
|
15
|
+
copyright notice, this list of conditions and the following
|
|
16
|
+
disclaimer in the documentation and/or other materials provided
|
|
17
|
+
with the distribution.
|
|
18
|
+
|
|
19
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
20
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
21
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
22
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
23
|
+
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
24
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
25
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
26
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
27
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
28
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
29
|
+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
30
|
+
POSSIBILITY OF SUCH DAMAGE.
|
|
31
|
+
License-File: COPYING
|
|
32
|
+
Keywords: yubikey,yubiotp,piv,fido
|
|
33
|
+
Author: Dain Nilsson
|
|
34
|
+
Author-email: <dain@yubico.com>
|
|
35
|
+
Maintainer: Toporin
|
|
36
|
+
Maintainer-email: <satochip.wallet@gmail.com>
|
|
37
|
+
Requires-Python: >=3.10, <4
|
|
38
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
39
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
40
|
+
Classifier: Topic :: Security :: Cryptography
|
|
41
|
+
Classifier: Topic :: Utilities
|
|
42
|
+
Requires-Dist: click (>=8.0,<9)
|
|
43
|
+
Requires-Dist: cryptography (>=3.0,<49)
|
|
44
|
+
Requires-Dist: fido2 (>=2.0,<3)
|
|
45
|
+
Requires-Dist: keyring (>=23.4,<26)
|
|
46
|
+
Requires-Dist: pyscard (>=2.0,<3)
|
|
47
|
+
Requires-Dist: python-pskc (>=1.3,<2)
|
|
48
|
+
Requires-Dist: pywin32 (>=223) ; sys_platform == "win32"
|
|
49
|
+
Project-URL: Homepage, https://github.com/Toporin/seedkeeper-manager
|
|
50
|
+
Description-Content-Type: text/plain
|
|
51
|
+
|
|
52
|
+
== YubiKey Manager CLI (Satochip fork)
|
|
53
|
+
|
|
54
|
+
NOTE: This is a fork of Yubico's https://github.com/Yubico/yubikey-manager[yubikey-manager],
|
|
55
|
+
published to PyPI as `seedkeeper-manager`. It is a *drop-in replacement*: the importable
|
|
56
|
+
package names (`yubikit`, `ykman`) and the `ykman` CLI command are unchanged, so a project can
|
|
57
|
+
switch to this fork by changing only its requirement from `yubikey-manager` to
|
|
58
|
+
`seedkeeper-manager` — no code changes. Note that `seedkeeper-manager` and `yubikey-manager`
|
|
59
|
+
cannot be installed in the same environment at the same time.
|
|
60
|
+
|
|
61
|
+
image:https://github.com/Toporin/seedkeeper-manager/actions/workflows/source-package.yml/badge.svg["Source package build", link="https://github.com/Toporin/seedkeeper-manager/actions/workflows/source-package.yml"]
|
|
62
|
+
image:https://github.com/Toporin/seedkeeper-manager/actions/workflows/windows.yml/badge.svg["Windows build", link="https://github.com/Toporin/seedkeeper-manager/actions/workflows/windows.yml"]
|
|
63
|
+
image:https://github.com/Toporin/seedkeeper-manager/actions/workflows/macOS.yml/badge.svg["MacOS build", link="https://github.com/Toporin/seedkeeper-manager/actions/workflows/macOS.yml"]
|
|
64
|
+
image:https://github.com/Toporin/seedkeeper-manager/actions/workflows/ubuntu.yml/badge.svg["Ubuntu build", link="https://github.com/Toporin/seedkeeper-manager/actions/workflows/ubuntu.yml"]
|
|
65
|
+
|
|
66
|
+
Python 3.10 (or later) library and command line tool for configuring a YubiKey.
|
|
67
|
+
If you're looking for a graphical application, check out https://developers.yubico.com/yubioath-flutter/[Yubico Authenticator].
|
|
68
|
+
|
|
69
|
+
=== Usage
|
|
70
|
+
For more usage information and examples, see the https://docs.yubico.com/software/yubikey/tools/ykman/Using_the_ykman_CLI.html[YubiKey Manager CLI User Manual].
|
|
71
|
+
|
|
72
|
+
....
|
|
73
|
+
Usage: ykman [OPTIONS] COMMAND [ARGS]...
|
|
74
|
+
|
|
75
|
+
Configure your YubiKey via the command line.
|
|
76
|
+
|
|
77
|
+
Examples:
|
|
78
|
+
|
|
79
|
+
List connected YubiKeys, only output serial number:
|
|
80
|
+
$ ykman list --serials
|
|
81
|
+
|
|
82
|
+
Show information about YubiKey with serial number 0123456:
|
|
83
|
+
$ ykman --device 0123456 info
|
|
84
|
+
|
|
85
|
+
Options:
|
|
86
|
+
-d, --device SERIAL specify which YubiKey to interact with by serial number
|
|
87
|
+
-r, --reader NAME specify a YubiKey by smart card reader name (can't be used with --device or list)
|
|
88
|
+
-l, --log-level [ERROR|WARNING|INFO|DEBUG|TRAFFIC]
|
|
89
|
+
enable logging at given verbosity level
|
|
90
|
+
--log-file FILE write log to FILE instead of printing to stderr (requires --log-level)
|
|
91
|
+
--diagnose show diagnostics information useful for troubleshooting
|
|
92
|
+
-v, --version show version information about the app
|
|
93
|
+
--full-help show --help output, including hidden commands
|
|
94
|
+
-h, --help show this message and exit
|
|
95
|
+
|
|
96
|
+
Commands:
|
|
97
|
+
info show general information
|
|
98
|
+
list list connected YubiKeys
|
|
99
|
+
config enable or disable applications
|
|
100
|
+
fido manage the FIDO applications
|
|
101
|
+
oath manage the OATH application
|
|
102
|
+
openpgp manage the OpenPGP application
|
|
103
|
+
otp manage the YubiOTP application
|
|
104
|
+
piv manage the PIV application
|
|
105
|
+
....
|
|
106
|
+
|
|
107
|
+
The `--help` argument can also be used to get detailed information about specific
|
|
108
|
+
subcommands:
|
|
109
|
+
|
|
110
|
+
ykman oath --help
|
|
111
|
+
|
|
112
|
+
=== Versioning/Compatibility
|
|
113
|
+
This project follows https://semver.org/[Semantic Versioning]. Any project
|
|
114
|
+
depending on seedkeeper-manager should take care when specifying version ranges to
|
|
115
|
+
not include any untested major version, as it is likely to have backwards
|
|
116
|
+
incompatible changes. For example, you should NOT depend on ">=5", as it has no
|
|
117
|
+
upper bound. Instead, depend on ">=5, <6", as any release before 6 will be
|
|
118
|
+
compatible.
|
|
119
|
+
|
|
120
|
+
Note that any private variables (names starting with '_') are not part of the
|
|
121
|
+
public API, and may be changed between versions at any time.
|
|
122
|
+
|
|
123
|
+
=== Installation
|
|
124
|
+
YubiKey Manager can be installed independently of platform by using pip (or
|
|
125
|
+
equivalent):
|
|
126
|
+
|
|
127
|
+
pip install --user seedkeeper-manager
|
|
128
|
+
|
|
129
|
+
On Linux platforms you will need `pcscd` installed and running to be able to
|
|
130
|
+
communicate with a YubiKey over the SmartCard interface. Additionally, you may
|
|
131
|
+
need to set permissions for your user to access YubiKeys via the HID interfaces.
|
|
132
|
+
More information available link:doc/Device_Permissions.adoc[here].
|
|
133
|
+
|
|
134
|
+
Some of the libraries used by seedkeeper-manager have C-extensions, and may require
|
|
135
|
+
additional dependencies to build, such as http://www.swig.org/[swig] and
|
|
136
|
+
potentially https://pcsclite.apdu.fr/[PCSC lite].
|
|
137
|
+
|
|
138
|
+
=== Pre-built packages
|
|
139
|
+
Pre-built packages specific to your platform may be available from Yubico or
|
|
140
|
+
third parties. Please refer to your platforms native package manager for
|
|
141
|
+
detailed instructions on how to install, if available.
|
|
142
|
+
|
|
143
|
+
==== Windows
|
|
144
|
+
A Windows installer is available to download from the
|
|
145
|
+
https://github.com/Toporin/seedkeeper-manager/releases/latest[Releases page].
|
|
146
|
+
|
|
147
|
+
==== MacOS
|
|
148
|
+
A MacOS installer is available to download from the
|
|
149
|
+
https://github.com/Toporin/seedkeeper-manager/releases/latest[Releases page].
|
|
150
|
+
|
|
151
|
+
Additionally, packages are available from Homebrew and MacPorts.
|
|
152
|
+
|
|
153
|
+
===== Input Monitoring access on MacOS
|
|
154
|
+
When running one of the `ykman otp` commands you may run into an error such as:
|
|
155
|
+
`Failed to open device for communication: -536870174`. This indicates a problem
|
|
156
|
+
with the permission to access the OTP (keyboard) USB interface.
|
|
157
|
+
|
|
158
|
+
To access a YubiKey over this interface the application needs the `Input
|
|
159
|
+
Monitoring` permission. If you are not automatically prompted to grant this
|
|
160
|
+
permission, you may have to do so manually. Note that it is the _terminal_ you
|
|
161
|
+
are using that needs the permission, not the ykman executable.
|
|
162
|
+
|
|
163
|
+
To add your terminal application to the `Input Monitoring` permission list, go
|
|
164
|
+
to `System Preferences -> Security & Privacy -> Privacy -> Input Monitoring` to
|
|
165
|
+
resolve this.
|
|
166
|
+
|
|
167
|
+
===== Uninstallation of the MacOS .pkg
|
|
168
|
+
To uninstall yubikey-manager when installed via the pgk installer, run:
|
|
169
|
+
|
|
170
|
+
$ sudo rm -rf /usr/local/bin/ykman /usr/local/ykman
|
|
171
|
+
|
|
172
|
+
==== Linux
|
|
173
|
+
Packages are available for several Linux distributions by third party package
|
|
174
|
+
maintainers.
|
|
175
|
+
|
|
176
|
+
Python-specific tools such as pip, pipx, or uv can be used directly to install and
|
|
177
|
+
manage seedkeeper-manager, and is generally the recommended approach.
|
|
178
|
+
|
|
179
|
+
==== FreeBSD
|
|
180
|
+
Although not being officially supported on this platform, YubiKey Manager can be
|
|
181
|
+
installed on FreeBSD. It's available via its ports tree or as pre-built package.
|
|
182
|
+
Should you opt to install and use YubiKey Manager on this platform, please be aware
|
|
183
|
+
that it's **NOT** maintained by Yubico.
|
|
184
|
+
|
|
185
|
+
To install the binary package, use `pkg install pyXY-yubikey-manager`, with `pyXY`
|
|
186
|
+
specifying the version of Python the package was built for, so in order to install
|
|
187
|
+
YubiKey Manager for Python 3.8, use:
|
|
188
|
+
|
|
189
|
+
# pkg install py38-yubikey-manager
|
|
190
|
+
|
|
191
|
+
For more information about how to install packages or ports on FreeBSD, please refer
|
|
192
|
+
to its official documentation: https://docs.freebsd.org/en/books/handbook/ports[FreeBSD Handbook].
|
|
193
|
+
|
|
194
|
+
In order to use `ykman otp` commands, you need to make sure the _uhid(4)_ driver
|
|
195
|
+
attaches to the USB device:
|
|
196
|
+
|
|
197
|
+
# usbconfig ugenX.Y add_quirk UQ_KBD_IGNORE
|
|
198
|
+
# usbconfig ugenX.Y reset
|
|
199
|
+
|
|
200
|
+
The correct device to operate on _(ugenX.Y)_ can be determined using
|
|
201
|
+
`usbconfig list`.
|
|
202
|
+
|
|
203
|
+
When using FreeBSD 13 or higher, you can switch to the more modern _hidraw(4)_
|
|
204
|
+
driver. This allows YubiKey Manager to access OTP HID in a non-exclusive way,
|
|
205
|
+
so that the key will still function as a USB keyboard:
|
|
206
|
+
|
|
207
|
+
# sysrc kld_list+="hidraw hkbd"
|
|
208
|
+
# cat >>/boot/loader.conf<<EOF
|
|
209
|
+
hw.usb.usbhid.enable="1"
|
|
210
|
+
hw.usb.quirk.0="0x1050 0x0010 0 0xffff UQ_KBD_IGNORE" # YKS_OTP
|
|
211
|
+
hw.usb.quirk.1="0x1050 0x0110 0 0xffff UQ_KBD_IGNORE" # NEO_OTP
|
|
212
|
+
hw.usb.quirk.2="0x1050 0x0111 0 0xffff UQ_KBD_IGNORE" # NEO_OTP_CCID
|
|
213
|
+
hw.usb.quirk.3="0x1050 0x0114 0 0xffff UQ_KBD_IGNORE" # NEO_OTP_FIDO
|
|
214
|
+
hw.usb.quirk.4="0x1050 0x0116 0 0xffff UQ_KBD_IGNORE" # NEO_OTP_FIDO_CCID
|
|
215
|
+
hw.usb.quirk.5="0x1050 0x0401 0 0xffff UQ_KBD_IGNORE" # YK4_OTP
|
|
216
|
+
hw.usb.quirk.6="0x1050 0x0403 0 0xffff UQ_KBD_IGNORE" # YK4_OTP_FIDO
|
|
217
|
+
hw.usb.quirk.7="0x1050 0x0405 0 0xffff UQ_KBD_IGNORE" # YK4_OTP_CCID
|
|
218
|
+
hw.usb.quirk.8="0x1050 0x0407 0 0xffff UQ_KBD_IGNORE" # YK4_OTP_FIDO_CCID
|
|
219
|
+
hw.usb.quirk.9="0x1050 0x0410 0 0xffff UQ_KBD_IGNORE" # YKP_OTP_FIDO
|
|
220
|
+
EOF
|
|
221
|
+
# reboot
|
|
222
|
+
|
|
223
|
+
==== From source (for development)
|
|
224
|
+
To install from source, see the link:doc/Development.adoc[development]
|
|
225
|
+
instructions.
|
|
226
|
+
|
|
227
|
+
=== Shell completion
|
|
228
|
+
|
|
229
|
+
Experimental shell completion for the command line tool is available, provided
|
|
230
|
+
by the underlying CLI library (`click`) but it is not enabled by default. To
|
|
231
|
+
enable it, run this command once (for Bash):
|
|
232
|
+
|
|
233
|
+
$ source <(_YKMAN_COMPLETE=bash_source ykman | sudo tee /etc/bash_completion.d/ykman)
|
|
234
|
+
|
|
235
|
+
More information on shell completion (including instructions for other shells) is
|
|
236
|
+
available at:
|
|
237
|
+
https://click.palletsprojects.com/en/stable/shell-completion/
|
|
238
|
+
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
ykman/__init__.py,sha256=A4tfGU6kYp1IyshZhhubvoi78Cs8SuNSyWPiS8JvLM8,1394
|
|
2
|
+
ykman/_cli/__init__.py,sha256=ZRV6kt69UIC2PiL3S-ii-vxuJJK3Y58j63EuEGGhEOE,1371
|
|
3
|
+
ykman/_cli/__main__.py,sha256=MNN6TrWjoMGRMkSc_mJlrEcJ_ES0tn4JM0qIpn1kOX0,22693
|
|
4
|
+
ykman/_cli/apdu.py,sha256=RUe-OWjto8ext19yPthxiPHwqr6Rv7O29y8TJSJCLgc,7167
|
|
5
|
+
ykman/_cli/config.py,sha256=qvbi8MmuhBg23AieI2j6woiriAZHmXYFixG1r_33afY,21232
|
|
6
|
+
ykman/_cli/fido.py,sha256=ISm9-a5d9-q_SI6gzcm20CFOevWE1sq40g1b-C9INZ4,33200
|
|
7
|
+
ykman/_cli/hsmauth.py,sha256=9KDInwLP3GmcGG9bnY2cQlexOk7pVE3CUgZSbgFml_E,25399
|
|
8
|
+
ykman/_cli/info.py,sha256=qvUmER0EgyOI6QdBc5eQ-VzOXp3wKk_QBFA_RQAapWE,7363
|
|
9
|
+
ykman/_cli/oath.py,sha256=1bwAQMFPFHtungtLxG7ooCOK-2O-nQ5-Fv635Dn0W_o,32090
|
|
10
|
+
ykman/_cli/openpgp.py,sha256=B0z3Ox2Rsrvz2KSV_D_5R-EA-I21yWR9yTjwpgi1FRs,20757
|
|
11
|
+
ykman/_cli/otp.py,sha256=1oXgnjrEHIlptJ9lGmaEjDsFOJBdOyU3ZCAa-f2Kcto,28269
|
|
12
|
+
ykman/_cli/piv.py,sha256=w-dMRuCVLJRxhW1tCPcKb3g_SuUzIHRH5-VEYWzM6l4,47478
|
|
13
|
+
ykman/_cli/script.py,sha256=Vo3nIaV2i2lvD_-JOlC52ZAXudHkIbFzESKY4_GPYz4,3398
|
|
14
|
+
ykman/_cli/securitydomain.py,sha256=GHnmnQXECX6jwpFVQHH1K_qfPftuBXdRswKcKj_R37E,13629
|
|
15
|
+
ykman/_cli/util.py,sha256=xJcPWWmZgth_ThbUc8M3ZasCn_AhBVDlXmMBtYxlrKI,14500
|
|
16
|
+
ykman/base.py,sha256=ZFB_GuJ3EIKIne9-CaPUJ6UYDixB5U-uRLjbma8SMD0,3195
|
|
17
|
+
ykman/device.py,sha256=OYM4WEzOajmAOH_ht7Dosc7XvBMwJSs2P_QL4GidTC4,12694
|
|
18
|
+
ykman/diagnostics.py,sha256=iEh6RCzoZfe5iTcVtP5FYqSXFtAWjZpST9puZ_eYw3Q,8113
|
|
19
|
+
ykman/fido.py,sha256=LGZgsmwz8WZuDd_wgJabhxX3yd72eJB4ZlnGQyF0R4c,3882
|
|
20
|
+
ykman/hid/__init__.py,sha256=V6ET6ulN5BHjmlCwOwLVMYNrXwnpJiWHUKk3jbT_zZc,3835
|
|
21
|
+
ykman/hid/base.py,sha256=7dL_1JIgS-H0fe-fnua7COkgARaqVzXJAskq1crqCZw,2951
|
|
22
|
+
ykman/hid/fido.py,sha256=yX6r9cYqXbHbT9wu_FA6hg_YD1mycB0WMeZtzl7lII4,3201
|
|
23
|
+
ykman/hid/freebsd.py,sha256=kRPpY62Hbwh65glD_4LlOGafy6Pr3J9fgqp_kpeWcaM,10168
|
|
24
|
+
ykman/hid/linux.py,sha256=MiO5c26ZtThOh1TR2OveIt1bt7K5eCt2ha35bnTLoaE,4244
|
|
25
|
+
ykman/hid/macos.py,sha256=ZCVJcKaIaH5UGcoYwQaB0Dnle9gjeNCrEoddUICJUoU,9637
|
|
26
|
+
ykman/hid/windows.py,sha256=dXv44Nd6iEs92p_FHeIjjkOXw1dopt883hWn4kMvgE8,11331
|
|
27
|
+
ykman/hsmauth.py,sha256=pxMaxumvkhEn-rpwtryY3w6asM-I4Yf0egMgdydXKh0,1901
|
|
28
|
+
ykman/logging.py,sha256=tPNGsjzrwnzeIr5nzI_u_t7yu_xCRAyIdovQgQ17MKA,3065
|
|
29
|
+
ykman/logging_setup.py,sha256=l3m8Vz_Amv6bsMlM0Lo2TGnG2moCn6SXcZXgF_wdj8g,2495
|
|
30
|
+
ykman/oath.py,sha256=nTgqbkRJC4rcAm1vPI3wf-agkU2itmmM9zrqtELUV_I,3748
|
|
31
|
+
ykman/openpgp.py,sha256=tOqTSk63Cxxybe593J9jwqTpUyZnjZk1pAg6VxE6nIw,5455
|
|
32
|
+
ykman/otp.py,sha256=wFddp2-VvWbeh1wUU0y_Wz1xhxIZ0BmuT_v9Wa7U3Kg,4180
|
|
33
|
+
ykman/pcsc/__init__.py,sha256=ffOIpT6zoXhPSYw-hUo8wnK-9ZIzs-D-quty3mrRGZw,10791
|
|
34
|
+
ykman/piv.py,sha256=skx3GQKGuAGsd7gUL0P3i5ru_dRZnCOyp6zrYrN40iQ,27652
|
|
35
|
+
ykman/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
ykman/scancodes/__init__.py,sha256=8RrdjcPlRyVr97Mia70Q8B1PEowZBB3csuUbBVf35Sc,1908
|
|
37
|
+
ykman/scancodes/bepo.py,sha256=9ZBHLSN7ZpOPC7xvxUX2qxU9DDJiIIVQ8cth2vkrAFo,3405
|
|
38
|
+
ykman/scancodes/de.py,sha256=tbn9D9vuB1b6r-wBZ6KthgVYL0uN3T6XdMmcu0v3a-M,3343
|
|
39
|
+
ykman/scancodes/fr.py,sha256=9LwRuvz2qUNvsggfExtVB-AKMKCeU9G06T4eUzclg9o,3287
|
|
40
|
+
ykman/scancodes/it.py,sha256=VXakvaK84Vo4Nhy6JR757ToERKqMZPF6P_AOy6OINHc,3351
|
|
41
|
+
ykman/scancodes/modhex.py,sha256=mo262kxwcs3zNKlMjEC3mw9X4DEr6Djqka3nPACmeSM,2168
|
|
42
|
+
ykman/scancodes/norman.py,sha256=Zo_dtcHpviZQQ_WnjR-9hzpVROXncobHpLbVpHl1TAg,3312
|
|
43
|
+
ykman/scancodes/uk.py,sha256=CBl3XrLD1SRbYitN7XMC8Mc2yeWh7qH6S6vU0MdAEjY,3306
|
|
44
|
+
ykman/scancodes/us.py,sha256=Co8nshvMyQ5E5Tm0JjRfAhVMFRrHbOr1IP0v_2T9D2I,3305
|
|
45
|
+
ykman/scripting.py,sha256=X8lXkTJzQzwqAGktWY9dha6DxyAMmO_iO1CA9QdEXkY,8911
|
|
46
|
+
ykman/settings.py,sha256=majLk0c_18WpszYvNN_NaHiJL_tbFDKa1d3lMZeW1fU,4317
|
|
47
|
+
ykman/util.py,sha256=8EchEtU3DAgldxXUywuJfkRQEUC7NyZu0axIwthX2Q4,7452
|
|
48
|
+
yubikit/__init__.py,sha256=NP4dCqKJhVnnh8vUFe-bfIWQGTUCTq1_P_pcV4aCNwM,1469
|
|
49
|
+
yubikit/core/__init__.py,sha256=BKi7U6omb3Iksai98FyHED9lWpKVzBWYmastZ0Vjvqc,12846
|
|
50
|
+
yubikit/core/fido.py,sha256=xtg0NP618G8GNIFGKYKX1-LCIt_6MaorqTH6O514SXU,5064
|
|
51
|
+
yubikit/core/otp.py,sha256=2gk9P9Il3zLeJHw_iK7QRnEVRY3pBzwtGKvc0X8jeaI,9830
|
|
52
|
+
yubikit/core/smartcard/__init__.py,sha256=OPklJrnFqyk08EEOnbo2a13QuffolTkfJHRMVrtpxi4,16353
|
|
53
|
+
yubikit/core/smartcard/scp.py,sha256=4bvK4rhbRZ0YAf6wYwyDoA-Wyw3XUTCHVFuDdGTHDR4,12322
|
|
54
|
+
yubikit/hsmauth.py,sha256=41c9VYCSi4SBiTm26xrgCDx9AXk1iXRurOgNsy_iyrM,22901
|
|
55
|
+
yubikit/logging.py,sha256=c0-r48qt9GqTNEnyBi32TEhrpHTROAQ_-yUkR-41qpg,1642
|
|
56
|
+
yubikit/management.py,sha256=86X4YS25pHRXZzpKC3GFhFa1UwpojDHHt4pn-hLGPbo,26182
|
|
57
|
+
yubikit/oath.py,sha256=JF0bcpcbHvQGhhUM0lepeK48HeIRi2yNPI89-S-PuSk,17202
|
|
58
|
+
yubikit/openpgp.py,sha256=vNJm5TQRqWEe4TPtXzPikHKU--N0qlahlnKhUehqKSY,60103
|
|
59
|
+
yubikit/piv.py,sha256=8QVeiNygyLD_EHo_FyTNngNEepVWXsv951F_gRS6R_0,51177
|
|
60
|
+
yubikit/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
|
+
yubikit/securitydomain.py,sha256=MXtyAfB9CYnXgpbgfIiwkbF7LgssQCUoxDX1uqdW08k,13211
|
|
62
|
+
yubikit/support.py,sha256=r3d3eFubmMFMa0_0uplzuVk6QMRXJ53SawgzUHroivo,22468
|
|
63
|
+
yubikit/yubiotp.py,sha256=rC-dBT6MkAMA-Cy0W_S7B98-iYV1TKaleSThqv-dJdI,31470
|
|
64
|
+
seedkeeper_manager-5.9.2.dist-info/METADATA,sha256=ko1hsAgvaObRXNJyU7BF0dePrDmUhtYZoBXSvFgFpSQ,11364
|
|
65
|
+
seedkeeper_manager-5.9.2.dist-info/WHEEL,sha256=eY7nduwzv-ldUxpzbRlxwvC693Hg6PX8bWDjEHjZ_dk,88
|
|
66
|
+
seedkeeper_manager-5.9.2.dist-info/entry_points.txt,sha256=_cx9wxE8--FZ6mVsk5okLVrh13KCcXJyondEQBjj8jY,50
|
|
67
|
+
seedkeeper_manager-5.9.2.dist-info/licenses/COPYING,sha256=ki4qo-h_ocdKWutzg27MTAs2_Hxzy4JG75aBMiDwCM0,1322
|
|
68
|
+
seedkeeper_manager-5.9.2.dist-info/RECORD,,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
Copyright (c) 2015 Yubico AB
|
|
2
|
+
All rights reserved.
|
|
3
|
+
|
|
4
|
+
Redistribution and use in source and binary forms, with or
|
|
5
|
+
without modification, are permitted provided that the following
|
|
6
|
+
conditions are met:
|
|
7
|
+
|
|
8
|
+
1. Redistributions of source code must retain the above copyright
|
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
|
10
|
+
2. Redistributions in binary form must reproduce the above
|
|
11
|
+
copyright notice, this list of conditions and the following
|
|
12
|
+
disclaimer in the documentation and/or other materials provided
|
|
13
|
+
with the distribution.
|
|
14
|
+
|
|
15
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
16
|
+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
17
|
+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
18
|
+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
19
|
+
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
20
|
+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
21
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
22
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
23
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
24
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
25
|
+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
26
|
+
POSSIBILITY OF SUCH DAMAGE.
|
ykman/__init__.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Copyright (c) 2015 Yubico AB
|
|
2
|
+
# All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
# Redistribution and use in source and binary forms, with or
|
|
5
|
+
# without modification, are permitted provided that the following
|
|
6
|
+
# conditions are met:
|
|
7
|
+
#
|
|
8
|
+
# 1. Redistributions of source code must retain the above copyright
|
|
9
|
+
# notice, this list of conditions and the following disclaimer.
|
|
10
|
+
# 2. Redistributions in binary form must reproduce the above
|
|
11
|
+
# copyright notice, this list of conditions and the following
|
|
12
|
+
# disclaimer in the documentation and/or other materials provided
|
|
13
|
+
# with the distribution.
|
|
14
|
+
#
|
|
15
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
16
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
17
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
18
|
+
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
19
|
+
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
21
|
+
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
22
|
+
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
23
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
24
|
+
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
25
|
+
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
26
|
+
# POSSIBILITY OF SUCH DAMAGE.
|
|
27
|
+
|
|
28
|
+
__version__ = "5.9.2"
|
ykman/_cli/__init__.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# Copyright (c) 2015 Yubico AB
|
|
2
|
+
# All rights reserved.
|
|
3
|
+
#
|
|
4
|
+
# Redistribution and use in source and binary forms, with or
|
|
5
|
+
# without modification, are permitted provided that the following
|
|
6
|
+
# conditions are met:
|
|
7
|
+
#
|
|
8
|
+
# 1. Redistributions of source code must retain the above copyright
|
|
9
|
+
# notice, this list of conditions and the following disclaimer.
|
|
10
|
+
# 2. Redistributions in binary form must reproduce the above
|
|
11
|
+
# copyright notice, this list of conditions and the following
|
|
12
|
+
# disclaimer in the documentation and/or other materials provided
|
|
13
|
+
# with the distribution.
|
|
14
|
+
#
|
|
15
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
16
|
+
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
17
|
+
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
18
|
+
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
19
|
+
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
20
|
+
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
21
|
+
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
22
|
+
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
23
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
24
|
+
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
25
|
+
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
26
|
+
# POSSIBILITY OF SUCH DAMAGE.
|