search for: scard

Displaying 20 results from an estimated 77 matches for "scard".

Did you mean: card
2001 Nov 11
1
[PATCH] do not invoke sub-make unless the 'cd directory' succeeds
If for some reason (directory missing or permissions bad), it is not possible to cd into either the scards or openbsd-compat direcotries, the make will enter an infinite loop. Correct this by changing the make idiom (cd directory; $(MAKE)) to the idiom (cd directory && $(MAKE)) so that a failure to cd into directory will generate an error for make. The following patch is against the late...
2006 Sep 09
2
Make Install Failed for 4.4p1 on FC4
...t ! -z ""; then \ /usr/bin/perl ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Entering directory `/usr/local/openssh/openbsd-compat' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/local/openssh/openbsd-compat' (cd scard && make DESTDIR= install) make[1]: Entering directory `/usr/local/openssh/scard' make[1]: *** No rule to make target `Ssh.bin', needed by `install'. Stop. make[1]: Leaving directory `/usr/local/openssh/scard' make: *** [scard-install] Error 2 My platform is Fedora Core 4 w...
2003 May 27
3
[Bug 577] bug (wrong flag) in sc_private_decrypt (scard-opensc.c)
http://bugzilla.mindrot.org/show_bug.cgi?id=577 Summary: bug (wrong flag) in sc_private_decrypt (scard-opensc.c) Product: Portable OpenSSH Version: -current Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Smartcard AssignedTo: openssh-bugs at mindrot.org ReportedBy: l...
2007 Mar 11
4
[Bug 1294] includes.h should pull in string.h based on HAVE_STRING_H
...39;s some logic in includes.h to handle HAVE_STRINGS_H, but none for HAVE_STRING_H the reason for this is that many source files use str* and mem* functions but are inconsistent as to whether they include string.h ... for example, these files do not include string.h, yet they use funcs: entropy.c scard-opensc.c ssh-rand-helper.c in the case of scard-opensc.c, it results in ugly warnings like: scard-opensc.c: In function 'sc_prkey_op_init': scard-opensc.c:176: warning: implicit declaration of function 'strcmp' scard-opensc.c:188: warning: implicit declaration of function 'strl...
2003 Jul 23
1
[Bug 621] scard-opensc.c: more than one private key object for a certificate
http://bugzilla.mindrot.org/show_bug.cgi?id=621 Summary: scard-opensc.c: more than one private key object for a certificate Product: Portable OpenSSH Version: -current Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Smartcar...
2002 Feb 28
0
Can't untar snapshot.. scard missing from CVS?
...2.x and have run into the following problems: After downloading the nightly snapshot, untar fails with "Directory Checksum error". Gunzip is successful, but the tar fails. Failing the snapshot extraction, I checked out a clean copy from the CVS. Configure fails when it hits the "/scard" directory, which is empty. I touched "/scard/Makefile.in", and configure then ran to completion. So, two things... 1. Is there a blocksize option on tar when the snapshots were created? My extract command is: gzcat openssh-SNAP-20020228.tar.gz | tar xvof - Separately unzipping and...
2003 May 14
0
small fix for scard-opensc.c
Hi, I think there's a small bug in sc_private_decrypt in scard-opensc.c (see attached patch). The 'flags' parameter in the sc_pkcs15_decipher function call should be set to SC_ALGORITHM_RSA_PAD_PKCS1 and not to 0. If flags == 0 then sc_pkcs15_decipher uses RSA raw as a default method which has (at least) two drawbacks a) not all cards support RSA raw a...
2009 Apr 07
2
Portable OpenSSH CVS install error
...Lopenbsd-compat/ -fstack-protector-all -lssh -lopenbsd-compat -lcrypto -lz % sudo make install Password: if test ! -z ""; then \ /opt/local/bin/perl5 ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Nothing to be done for `all'. (cd scard && make DESTDIR= install) make[1]: *** No rule to make target `Ssh.bin', needed by `install'. Stop. make: *** [scard-install] Error 2 ... This strikes me as odd since I did not ask for scard stuff. Installing the official openssh-5.2p1 release with a patched sftp.c works as expec...
2003 Jun 03
6
[Bug 584] scard-opensc.c doesn't work without PIN
http://bugzilla.mindrot.org/show_bug.cgi?id=584 Summary: scard-opensc.c doesn't work without PIN Product: Portable OpenSSH Version: -current Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Smartcard AssignedTo: openssh-bugs at mindr...
2003 Jun 05
3
[Bug 589] scard-opensc.c: load only those keys for which there's a private key
http://bugzilla.mindrot.org/show_bug.cgi?id=589 Summary: scard-opensc.c: load only those keys for which there's a private key Product: Portable OpenSSH Version: -current Platform: All OS/Version: Linux Status: NEW Severity: enhancement Priority: P2 Componen...
2003 May 08
3
get_pin for scard-opensc.c
I'm attaching a patch to allow ssh client to get a pin from the command line when using a smartcard. Most of it is from a patch by Danny De Cock <godot () ulyssis ! org>, but I've used the ssh read_passphrase function instead. Any errors are mine, I'm sure. This enables ssh -I 0 to use a pin-protected smartcard via opensc. Thanks, Kevin Stefanik -------------- next part
2006 May 04
2
xmalloc(foo*bar) -> xcalloc(foo, bar) for Portable
...zeof(char *)); - *echo_on = xmalloc((*num + 1) * sizeof(u_int)); + *prompts = xcalloc((*num + 1), sizeof(char *)); + *echo_on = xcalloc((*num + 1), sizeof(u_int)); for (i = 0; i < *num; ++i) { (*prompts)[i] = buffer_get_string(&m, NULL); (*echo_on)[i] = buffer_get_int(&m); Index: scard-opensc.c =================================================================== RCS file: /usr/local/src/security/openssh/cvs/openssh_cvs/scard-opensc.c,v retrieving revision 1.15 diff -u -p -r1.15 scard-opensc.c --- scard-opensc.c 13 May 2004 07:29:35 -0000 1.15 +++ scard-opensc.c 4 May 2006 01:58:41...
2003 Sep 13
1
make install fails with current CVS due to commented out target
Solaris x86 8 autoconf 2.57 autoconf; autoheader; ./configure ....; make all goes fine make install fails on Ssh.bin. scard/Makefile has a commented out target for it - is there some reason for the target being commented out? -- Carson
2005 Sep 06
1
make install error, 4.2p1
...then \ /usr/bin/perl ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Entering directory `/usr/local/src/openssh-4.2p1/openbsd-compat' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/usr/local/src/openssh-4.2p1/openbsd-compat' (cd scard && make DESTDIR= install) make[1]: Entering directory `/usr/local/src/openssh-4.2p1/scard' ../mkinstalldirs /usr/local/share /usr/local/bin/install -c -m 0644 ./Ssh.bin /usr/local/share/Ssh.bin install: The -c, -f, -n options each require a directory following! make[1]: *** [install] Er...
2005 Oct 05
2
ssh-agent add PKCS#11 support
...d API interface that can be used in order to access cryptographic tokens. You can find the specification at http://www.rsasecurity.com/rsalabs/node.asp?id=2133, most smartcard and other cryptographic device vendors support PKCS#11, opensc also provides PKCS#11 interface. I can easily make the scard.c, scard-opensc.c and ssh-agent.c support PKCS#11. PKCS#11 is much more portable, standard, used standard than the current opensc implementation. I just written the PKCS#11 support for the openvpn project, and I think openssh can also benefit from the same implementation. Are you interested...
2001 Oct 24
4
snapshot problems on Mac OS X
...problems with the latest snapshot on Mac OS X: I am by no means an autoconf expert, but here is what happens after a "autoreconf": autoconf: Undefined macros: configure.in:1291:AC_CHECK_MEMBERS([struct stat.st_blksize]) configure.in:2168:AC_CONFIG_FILES([Makefile openbsd-compat/Makefile scard/Makefile ssh_prng_cmds]) configure.in:26:AC_SYS_LARGEFILE configure.in:4:AC_CONFIG_SRCDIR([ssh.c]) /usr/bin/autoheader: Symbol `socklen_t' is not covered by /usr/share/autoconf/acconfig.h ./acconfig.h next, the results from running "configure": creating cache ./config.cache ./conf...
2008 Aug 16
21
[Bug 1506] New: rationalize agent behavior on smartcard removal/reattachment
https://bugzilla.mindrot.org/show_bug.cgi?id=1506 Summary: rationalize agent behavior on smartcard removal/reattachment Product: Portable OpenSSH Version: 5.1p1 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Smartcard AssignedTo:
2002 Apr 01
0
[Bug 198] New: Error getting file with sftp on old F-Secure servers
...S) LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o fatal.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o SSHDOBJS= sshd.o auth.o auth1.o auth2.o auth-chall.o auth2-chall.o auth- rhosts.o auth-options.o auth-krb4.o auth-pam.o auth2-pa...
2002 Mar 07
0
[Bug 137] New: 'make install' fails because of missing uudecode
...ix86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: Documentation AssignedTo: openssh-unix-dev at mindrot.org ReportedBy: info at fortytwo.eu.org make[1]: Entering directory `/usr/src/openssh-3.0.2p1-patched/scard' uudecode Ssh.bin.uu make[1]: uudecode: Command not found make[1]: *** [Ssh.bin] Error 127 make[1]: Leaving directory `/usr/src/openssh-3.0.2p1-patched/scard' make: *** [scard-install] Error 2 It is not mentioned in the FAQ/in README and INSTALL that uudecode is needed. ------- You are...
2004 Dec 23
1
openssh-3.9p1 for Mac OS X
...The ./configure and make work fine but 'make install' fails with: computer:~/XDev/openssh-3.9p1 bcburke$ make install if test ! -z ""; then \ /usr/bin/perl ./fixprogs ssh_prng_cmds ; \ fi (cd openbsd-compat && make) make[1]: Nothing to be done for `all'. (cd scard && make DESTDIR= install) ../mkinstalldirs /usr/local/share make[1]: execvp: ../mkinstalldirs: Permission denied make[1]: *** [install] Error 127 make: *** [scard-install] Error 2 This error occurs even if done as root. Is this just a permission problem or is there more to it? Any pointe...