Skip to content

Commit 1eb6f5c

Browse files
authored
fix: broken and corrupted link addresses.
1 parent d5a7844 commit 1eb6f5c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/MANUAL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ the [PKCS\#11 standard](https://www.oasis-open.org/committees/tc_home.php?wg_abb
77
important place in key management and operation, for various reasons:
88

99
- Virtually all HSM and smart card vendors support this interface
10-
- Software libraries, such a [SoftHSM](https://www.opendnssec.org/softhsm/) supports
10+
- Software libraries, such a [SoftHSM](https://www.opendnssec.org/en/latest/softhsm/) supports
1111
it; [NSS](https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS) also exposes a PKCS\#11 interface, although
1212
it requires specific API calls to initialize
1313
- Java
1414
platforms ([IBM](https://www.ibm.com/support/knowledgecenter/SSYKE2_8.0.0/com.ibm.java.security.component.80.doc/security-component/pkcs11implDocs/ibmpkcs11.html)
15-
and [Oracle](https://docs.oracle.com/en/java/javase/11/security/pkcs11-reference-guide1.html)) both support, through
15+
and [Oracle](https://docs.oracle.com/en/java/javase/11/security/pkcs11-reference-guide.html)) both support, through
1616
JCE providers, access to PKCS\#11-protected keys and certificates
1717
- It is also widely supported in many other languages and platforms (C++, Python, Rust, Ruby, ...)
1818

lib/pkcs11_ll_win.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ void pkcs11_ll_echo_on(void)
9898

9999
void pkcs11_ll_clear_screen(void)
100100
{
101-
/* the code below has been taken from http://support.microsoft.com/kb/99261 */
101+
/* the code below has been taken from https://learn.microsoft.com/en-us/windows/console/clearing-the-screen */
102102

103103
/* Standard error macro for reporting API errors */
104104
#define PERR(bSuccess, api){if(!(bSuccess)) printf("%s:Error %d from %s on line %d\n", __FILE__, GetLastError(), api, __LINE__);}

m4/ax_with_dmalloc.m4

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# DESCRIPTION
1010
#
1111
# Let the user enable/disable support for the dmalloc library available
12-
# from <http://www.dmalloc.org/>.
12+
# from <http://www.dmalloc.com/>.
1313
#
1414
# The macro adds the command-line flag "--with-dmalloc". Furthermore,
1515
# "-IPREFIX/include" will be added to "$CPPFLAGS", "-LPREFIX/lib" to

src/win_applink.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
/* This glue code is needed under Windows, */
20-
/* please refer to https://www.openssl.org/support/faq.html#PROG2 */
20+
/* please refer to https://docs.openssl.org/1.1.1/man3/OPENSSL_Applink/ */
2121
/* for more information */
2222

2323

0 commit comments

Comments
 (0)