Tagged Questions
The nss tag has no wiki summary.
7
votes
1answer
717 views
What is the difference between a PKCS12 keystore and a PKCS11 keystore?
I'm interested in Java-NSS libraries, and I'm reading the Sun's P11 Guide.
I am confused on the following:
What is the difference between using a PKCS12 keystore and a PKCS11 keystore?
A keystore is ...
3
votes
1answer
83 views
JSS SSLSocket problem choosing Client Certificate
This is a cross-post from the Mozilla Crypto Dev ML. Hoping that someone on SO has some experience using org.mozilla.jss. Link: JSS - MDN
I'm trying to make two separate HTTPS requests to a remote ...
2
votes
0answers
23 views
trying to enable FIPS mode using SunPKCS11 with NSS in Java
I'm working on a project requiring FIPS 140-2 compliant cryptography, and I'm trying to use NSS with the SunPKCS11 token interface, and I've gotten it working up until turning on FIPS mode in NSS. I ...
2
votes
1answer
46 views
Is getpwnam_r() reentrant a requirement?
getpwnam_r() is reentrant according a number of manpages. However, the standard only state
The getpwnam_r() function is thread-safe and returns values in a user-supplied buffer instead of possibly ...
2
votes
0answers
448 views
How do I build python-nss and NSS for Mac OS X?
I'm trying to build python-nss, a python interface for the Mozilla NSS library, on a 64-bit Mac running Mac OS 10.6.5, for use in python software running on Mac OS X 10.6 or later. I can get NSS ...
2
votes
3answers
980 views
validating X.509 certificate on linux
I have just started working with X.509 certificates. Can any one tell me how to go about validating a certificate on linux? The use case is that my app had downloaded a certificate in a previous ...
1
vote
1answer
369 views
How OpenSSL/Mozilla NSS RSA sign and verify (PK11_Sign, PK11_Verify, PK11_VerifyRecover functions) work?
I have my RSA public and private keys (all of p,q,e,n,d) in PEM format. I am curious to know:
How PK11_Sign(), PK11_Verify() and PK11_VerifyRecover() (from OpenSSL/Mozilla NSS library) work with ...
1
vote
1answer
385 views
Listing certificates from a CAC without pin
I'm developing a CAC authentication app.
I'm running RHEL 5.5 and have a card reader attached to my machine. When I insert a smart card/CAC, there is a popup notification that comes on the upper ...
1
vote
0answers
80 views
Java EE 6 and Certutil
I have installed Java EE 6 with GlassfishV3. I want to use NSS tools to manage the security of the server, i.e generating certificates using certutil. However I can't find the NSS library and tools in ...
1
vote
2answers
910 views
LDAP won't update if cached data exists
We have an SELinux client that authenticates network users using LDAP connecting to an Active Directory server. Since our machines have to operate "untethered," we have to use nscd to cache group and ...
1
vote
2answers
1k views
How can I translate Perl's Convert::ASN1 to Ruby code?
Can somebody advise me what this code does and how can I convert it to Ruby in most simple way?
#!perl
use Convert::ASN1;
my $asn1 = Convert::ASN1->new(encoding => 'DER');
...
1
vote
1answer
438 views
Convert OpenSSL public key into NSS one
How do I convert public key generated by OpenSSL into one NSS would understand? I've generated key with OpenSSL, exported it into pkcs12 format, imported it into NSS database and then extract public ...
0
votes
0answers
36 views
NSS PKCS11 not working well as jsse provider
I'm using NSS as my Sun PKCS11 provider (for the purpose of FIPS-140 compliance) for my Java application but I'm experiencing some undesired behavior that is not working for me. Specifically, ...
0
votes
0answers
36 views
Is it possible to override / bypass nscd?
I am making an NSS module answers depending on the name of the caller. For example, if sshd calls getpwnam_r(...), the pw_shell will be /bin/bash; if telnetd calls getpwnam_r(...), the pw_shell will ...
0
votes
1answer
175 views
Help to quick start NSS
I am starting into NSS and I managed to build it. The outcome was placed in a folder named dist and has several subfolders that contain several exe's dlls etc.
dist
/WINNT6.0_DBG.OBJ
...
0
votes
2answers
119 views
NSS 32 bit package on Java 64 bit
I have Windows 7 with 64 bit environment.
Configuring gateway,
I run NSS3.12.4 32 bit on 64 bit platform and got this error.
Libnspr4.dll Can't load IA 32 bit .dll on AMD 64 bit platform
Java is 64 ...
0
votes
1answer
60 views
How to enforce definite length encoding with CMS in NSS?
How to enforce definite length encoding with CMS in NSS?
I am trying to get NSS's CMS encoder to encode with DER, but the folks as mozilla have apparently only worried about BER encoding (as far as I ...
0
votes
1answer
197 views
java.lang.UnsatisfiedLinkError: org.mozilla.jss.ssl.SSLSocket.setSSLDefaultOption
I'm trying to get some NSS code working and I'm getting this error:
java.lang.UnsatisfiedLinkError: org.mozilla.jss.ssl.SSLSocket.setSSLDefaultOption(II)V
at ...
0
votes
2answers
123 views
Understanding NSS PK11_CipherOp and C memory allocation
Having some issues with C. I have this is my code:
// First line works, second line does not!
char outbuf[1024];
// char *outbuf = (char *) malloc(1024); // char is always 1
I am passing this ...
0
votes
1answer
110 views
SSLsample in NSS
Since the latest version of NSS does not provide the SSLSample program, I copied the folder SSLSample from the older version of NSS (3.9, 3.12) to the /security/nss/cmd folder inside nss-3.12.4 .
...
0
votes
1answer
167 views
When does firefox call nss_init?
I have my very own privacy CA library. So now I want to integrate it with the mozilla nss.
So every time when my firefox want to access https page, it will call this library via nss.
my problem is, i ...
0
votes
2answers
381 views
XPI signing linux no gui
I'm trying to sign an XPI on linux (no gui) using the NSS cert db (cert8.db and key3.db) i copied from another server of mine, on which I can sign XPI's just fine.
On the new box I can sign with a ...
0
votes
2answers
453 views
Blocking https url's in a embedded gecko browser
I have an application in which a gecko browser is embedded. The application is crashing when I try to access any https url's because nss is not properly initialised at this point. The crash is in ...