2025-07-24 22:27:13 -06:00
|
|
|
# modutil
|
|
|
|
|
|
|
|
|
|
> Manage PKCS #11 module information within the NSS security module database.
|
|
|
|
|
> More information: <https://manned.org/modutil>.
|
|
|
|
|
|
|
|
|
|
- Add a PKCS #11 module to a NSS database (e.g. a Firefox profile: `$HOME/.mozilla/firefox/default-release`):
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`modutil -dbdir sql:{{path/to/nss_database_directory}} -add "{{module_label}}" -libfile {{path/to/pkcs11_mod.so}}`
|
2025-07-24 22:27:13 -06:00
|
|
|
|
|
|
|
|
- List PKCS #11 modules in a NSS database:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`modutil -dbdir sql:{{path/to/nss_database_directory}} -list`
|