|
6 years ago | |
---|---|---|
lib | 8 years ago | |
m4 | 8 years ago | |
man | 7 years ago | |
src | 7 years ago | |
.gitignore | 8 years ago | |
AUTHORS | 8 years ago | |
COPYING | 8 years ago | |
Makefile.am | 6 years ago | |
NEWS | 7 years ago | |
README.md | 6 years ago | |
configure.ac | 7 years ago |
README.md
Scdtools - Tools for Scdaemon and OpenPGP smartcards
Scdtools is a set of utility tools to work with Scdaemon, the smartcard daemon of the GnuPG project, and OpenPGP smartcards.
Scdrand - Extract random numbers from a smartcard
Scdrand obtains up to 256 bytes of random data from a ISO7816-compliant smartcard and adds them to the kernel entropy pool.
It uses Scdaemon to send a GET CHALLENGE
to the smartcard. As per
ISO 7816-4, the smartcard replies with random bytes, which Scdrand then
sends to the Linux kernel entropy pool through the RNDADDENTROPY ioctl
call on /dev/random
.
Since that call requires root privileges, scdrand is installed with the
setuid bit set. To mitigate risks associated with running as root, the
program forks itself at startup and only the child retains the root
privileges needed to write to /dev/random
. The parent process, in
charge of communicating with the smartcard, then runs with the
privileges on the calling user.
Scdtotp - Generate time-based OTP from an OpenPGP smartcard
Scdtotp uses an OpenPGP smartcard as a poor man’s one-time password generator token. It generates time-based one-time password (TOTP) as per RFC 6238, based on a key it expects to find in the private data object of the inserted OpenPGP smartcard.
Note that contrary to a true password generator token, the key cannot remain only on the smartcard, it has to be sent to the computer so that scdtotp can derive the password from it. Thus it cannot provide the same level of security.
The key must be stored as an otpauth://
URI as specified in Google
Authenticator’s wiki,
e.g.:
otpauth://totp/alice@example.org?secret=KIMEFUAW4SRW
where the secret parameter is the Base32-encoded key. This format allows to specify also the non-secret parameters of the TOTP algorithm:
- the HMAC algorithm to use:
&algorithm=mac
, where mac can besha1
(default),sha256
, orsha512
; - the time period:
&period=N
, where N is expressed in seconds (30 seconds by default); - the number of digits to output:
&digits=N
(defaults to 6).
All of these parameters may be overridden by command line options.
Copying
Scdtools is distributed under the terms of the GNU General Public License, version 3 or higher. The full license is included in the COPYING file of the source distribution.
Homepage and contact
The project is located at http://www.incenp.org/dvlpt/scdrand.html. The latest source code is available in a Git repository at git://git.incenp.org/scdrand.git and may also be browsed at http://www.incenp.org/gitweb/?p=scdrand.git;a=summary.
The author may be contact at the following address: Damien Goutte-Gattat dgouttegattat@incenp.org