http->https

This commit is contained in:
edent
2017-10-17 08:02:02 +01:00
parent de61b83b4c
commit ea00678314
6 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ This module is based on version 2.40 of the PKCS#11 (Cryptoki)
specifications.
The complete specifications are available at
http://docs.oasis-open.org/pkcs11/pkcs11-base/v2.40/os/pkcs11-base-v2.40-os.html.
https://docs.oasis-open.org/pkcs11/pkcs11-base/v2.40/os/pkcs11-base-v2.40-os.html.
=== BUILDING
YKCS11 is automatically built as part of `yubico-piv-tool` and the
+1 -1
View File
@@ -7,7 +7,7 @@ smartcard, through common interfaces like PKCS#11. This project
contain the library, tools and PKCS#11 module to interact with the
hardware functionality.
* PIV Standards http://csrc.nist.gov/groups/SNS/piv/standards.html
* PIV Standards https://csrc.nist.gov/groups/SNS/piv/standards.html
=== General information
The default PIN code is 123456. The default PUK code is 12345678.
+3 -3
View File
@@ -34,7 +34,7 @@
#include <string.h>
/* From http://article.gmane.org/gmane.os.freebsd.devel.hackers/23606 */
/* From https://article.gmane.org/gmane.os.freebsd.devel.hackers/23606 */
static int my_strverscmp (const char *s1, const char *s2)
{
static const char *digits = "0123456789";
@@ -66,8 +66,8 @@ static int my_strverscmp (const char *s1, const char *s2)
* If the common prefix for s1 and s2 consists only of zeros, then the
* "longer" number has to compare less. Otherwise the comparison needs
* to be numerical (just fallthrough). See
* http://refspecs.freestandards.org/LSB_2.0.1/LSB-generic/
* LSB-generic/baselib-strverscmp.html
* https://refspecs.linuxfoundation.org/LSB_2.0.1/LSB-generic/
* https://refspecs.linuxfoundation.org/LSB_2.0.1/LSB-generic/LSB-generic/baselib-strverscmp.html
*/
while (*s1 == '0' && *s2 == '0') {
++s1;
+1 -1
View File
@@ -146,7 +146,7 @@ path to pkg-config.
_PKG_TEXT
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])],
To get pkg-config, see <https://www.freedesktop.org/wiki/Software/pkg-config/>.])],
[$4])
else
$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
+1 -1
View File
@@ -42,7 +42,7 @@
PURPOSE. */
/* Please submit changes back to the Scute project at
http://www.scute.org/ (or send them to marcus@g10code.com), so that
https://www.scute.org/ (or send them to marcus@g10code.com), so that
they can be picked up by other projects from there as well. */
/* This file is a modified implementation of the PKCS #11 standard by
+1 -1
View File
@@ -54,7 +54,7 @@ CK_RV parse_readers(ykpiv_state *state, const CK_BYTE_PTR readers, const CK_ULON
/*
* According to pcsc-lite, the format of a reader name is:
* name [interface] (serial) index slot
* http://ludovicrousseau.blogspot.se/2010/05/what-is-in-pcsc-reader-name.html
* https://ludovicrousseau.blogspot.se/2010/05/what-is-in-pcsc-reader-name.html
*/
for (i = 0; i < len; i++)