(based on http://mathjax-tw5.kantorsite.net/)
To use with NodeJS create a plugins/mathjax/
directory in your wiki containing the two files (plugin.info
and init.js
), i.e.
plugins/
mathjax/
plugin.info
init.js
tiddlers/
(based on http://mathjax-tw5.kantorsite.net/)
To use with NodeJS create a plugins/mathjax/
directory in your wiki containing the two files (plugin.info
and init.js
), i.e.
plugins/
mathjax/
plugin.info
init.js
tiddlers/
Make sure the openssl pkcs11 engine provided by OpenSC/libp11 can talk to your PKI card:
$ openssl engine pkcs11 -t -c -pre MODULE_PATH:/path/to/your/opensc-pkcs11-plugin-module.so
(pkcs11) pkcs11 engine
[Success]: MODULE_PATH:/path/to/your/OpenSC-pkcs11-plugin-module.so
[RSA]
[ available ]
import os | |
import tempfile | |
import random | |
from typing import Tuple, List | |
WORDLIST_URL = "https://raw.githubusercontent.com/bitcoin/bips/master/bip-0039/english.txt" | |
WORDLIST_LOCAL = "/tmp/" | |
USE_RANDOM = False |