summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/scard.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove obsole scard codemarkus2010-02-081-569/+0
|
* add missing checks for openssl return codes; with & ok djm@markus2006-11-061-5/+7
|
* almost entirely get rid of the culture of ".h files that include .h files"deraadt2006-08-031-3/+4
| | | | | ok djm, sort of ok stevesk makes the pain stop in one easy step
* clean extra spacesstevesk2006-08-011-5/+5
|
* need #include <string.h>stevesk2006-07-251-1/+3
|
* Put $OpenBSD$ tags back (as comments) to replace the RCSID()s thatdjm2006-03-251-0/+1
| | | | Theo nuked - our scripts to sync -portable need them in the files
* introduce xcalloc() and xasprintf() failure-checked allocations functionsdjm2006-03-251-1/+1
| | | | | | | | | | and use them throughout openssh xcalloc is particularly important because malloc(nmemb * size) is a dangerous idiom (subject to integer overflow) and it is time for it to die feedback and ok deraadt@
* RCSID() can diederaadt2006-03-191-1/+0
|
* kill a tiny header; ok deraadt@djm2004-05-081-2/+2
|
* add sc_get_key_label; larsch at trustcenter.de; bugzilla#591markus2003-06-121-1/+8
|
* rename log() into logit() to avoid name conflict. markus ok, from netbsditojun2003-04-081-3/+3
|
* various KNF and %d for unsignedderaadt2002-06-231-2/+2
|
* try_AUT0 in read_pubkey too, for those paranoid few who want to acl 'sh'rees2002-03-261-27/+34
|
* change sc_get_key to sc_get_keys and hide smartcard details in scard.cmarkus2002-03-251-25/+51
|
* we need to figure out AUT0 for sc_private_encrypt, toomarkus2002-03-241-21/+35
|
* Add PIN-protection for secret key.rees2002-03-211-27/+57
|
* In sc_put_key(), sc_reader_id should be id.rees2002-03-211-4/+3
|
* remove constmarkus2002-03-211-3/+3
|
* move key upload to scard.[ch]markus2002-03-211-1/+116
|
* make compile w/ openssl 0.9.7markus2002-03-211-31/+25
|
* call fatal() for openssl allocation failuresmarkus2001-12-271-2/+3
|
* basic KNF done while i was looking for something elsederaadt2001-12-191-8/+8
|
* Fix segv when smartcard communication error occurs during key load. ok markus@djm2001-09-281-1/+2
|
* never keep a connection to the smartcard open.markus2001-09-171-20/+18
| | | | allows ssh-keygen -D U while the agent is running; report from jakob@
* clean up some /* SMARTCARD */. ok markus@jakob2001-08-021-2/+2
|
* support finish rsa keys.markus2001-08-011-2/+19
| | | | free public keys after login -> call finish -> close smartcard.
* use strings instead of ints for smartcard reader idsmarkus2001-08-011-7/+10
|
* close smartcard connection if card is missing.jakob2001-07-311-1/+2
|
* do not complain about missing smartcards. ok markus@jakob2001-07-311-3/+9
|
* better errorcodes from sc_*; ok markus@jakob2001-07-301-19/+36
|
* Inquire Cyberflex class for 0xf0 cardsrees2001-07-261-25/+8
| | | | | change aid to conform to 7816-5 remove gratuitous fid selects
* typo in commentmarkus2001-07-251-2/+2
|
* handle card removal more gracefully, add sc_close() to scard.hmarkus2001-07-041-16/+52
|
* update for sectok.h interface changes.markus2001-07-021-159/+109
| | | | improve error handling.
* add smartcard support to the client, too (now you can use bothmarkus2001-06-261-4/+4
| | | | the agent and the client).
* prototype pedant. not very creative...itojun2001-06-261-2/+2
| | | | | - () -> (void) - no variable names
* more smartcard support.markus2001-06-261-0/+359