Соединение Java nssdb: не удалось инициализировать NSS - PullRequest
0 голосов
/ 22 мая 2018

Я пытаюсь получить данные сертификата из базы данных nss с помощью Java.Вот мой код:

try {
        char[] password = new char[0];
        Provider nss = new sun.security.pkcs11.SunPKCS11("C:\\ntdps_temp\\proj\\NSSdb\\scripts\\pkcs11.cfg");
        Security.addProvider(nss);
        KeyStore ks = KeyStore.getInstance("PKCS11", nss);
        ks.load(null, password);
        for (Enumeration<String> aliases = ks.aliases(); aliases.hasMoreElements();) {
            System.out.println(aliases.nextElement());
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

Вот pkcs11.cfg:

name = NSSdb
nssModule = keystore
nssDbMode = readWrite
nssLibraryDirectory = C:\ntdps_temp\proj\NSSdb\lib
nssSecmodDirectory = C:\ntdps_temp\proj\NSSdb

Вот мой след стека:

java.security.ProviderException: Could not initialize NSS
        at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:212)
        at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:103)
        at exportnssdb.ExportNssDb.main(ExportNssDb.java:30)
Caused by: java.io.IOException: The specified module could not be found.

        at sun.security.pkcs11.Secmod.nssLoadLibrary(Native Method)
        at sun.security.pkcs11.Secmod.initialize(Secmod.java:210)
        at sun.security.pkcs11.SunPKCS11.<init>(SunPKCS11.java:207)
        ... 2 more

Примечание строка 30 относится к строкеProvider nss = new sun.security.pkcs11.SunPKCS11("C:\\ntdps_temp\\proj\\NSSdb\\scripts\\pkcs11.cfg"); здесь

Я использую 32-битную Java для этой конкретной программы.Заранее благодарен за любую помощь

...