Has anyone been able to build NSS statically linked? I actually only need to build certutil and pk12util statically linked. I've seen that Chromium is building NSS statically, and they even have a patch file, but the whole build process is quite involved and I'm just trying to do a small subset. Any help would be greatly appreciated.
1
There are 1 best solutions below
Related Questions in MOZILLA
- how can i use require(""); in javascript
- Polymer paper-dialog on Mozilla Firefox
- Style.css not loading in Mozilla Firefox
- Firefox 38-40 SMIL problems - very slow speed (resolved in FF version 41 from 22.09.15)
- This webpage is not available ERR_NAME_NOT_RESOLVED
- for of loop querySelectorAll
- nss-3.14.1-3.fc16.src.rpm build fails with error: test suite returned failure(s)
- How SCSS rule evaluation done by browser
- css Positions are not same in mozilla and chrome
- Why mozilla changes the characters when i use the .net mvc statement redirect?
- woocommerce thumbnails have different image widths in chrome and mozilla
- php redirection working in chorme but not on firefox
- Geolocation not working in mac - firefox
- Cannot get Java Applets to work in any browser
- Retrieve html code of selected text
Related Questions in NSS
- return of CERT_FindUserCertByUsage in javascript
- nss-3.14.1-3.fc16.src.rpm build fails with error: test suite returned failure(s)
- Where is the default NSS database used by Dart pub found on OSX?
- Error: Can't access lexical declaration
- Java 8 64 bit on Windows with NSS for FIPS 140 compliance
- curl: (35) NSS: client certificate not found (nickname not specified) Centos 7
- Curl:How to handle NSS error -8156?
- How to initialize provider for pkcs11?
- trying to enable FIPS mode using SunPKCS11 with NSS in Java
- TLS handshake fails between a Java 1.8 client and a Java 1.7 TLS 1.1 server running in FIPS mode, even after disabling TLS 1.2 in the client side
- Using PKCS11 with NSS for Java encryption: java.security.ProviderException: Initialization failed
- version `NSS_3.14.3' not found on Ubuntu 64 bit while running JCEF
- Compilation of Mozilla NSS is failing on VS 2019
- Failure while calling nsIX509CertDB.nsIX509CertDB from command line
- Building libcurl with nss support
Related Questions in CERTUTIL
- Firefox - add certificate with certutil.exe - Windows XP
- certutil 403 errors when verifying SSL certificate with certutil
- Import pfx file into particular certificate store from command line
- From VBA to CMD - how insert result of command to cell
- EXE created from batch file doesn't run
- Storing large file within batch file
- Why does windows certutil and openSSL display CSR (pkcs#10) signature bytes differently?
- Is there a simple backup program in existance that will perform a SHA256 hash check to verify data?
- CRL is expired, but ChainStatus is telling me RevocationStatusUnknown
- Does certutil's -csp "Microsoft Platform Crypto Provider" option store the private key in the TPM?
- Display name Certificate OID - Windows
- Import SSL certificate by certutil in InstallShield
- How do I make CertUtil recursively go into my folders and subfolders
- How do you convert a .CSR / p10 / PKCS#10 file to .DER format in java?
- Build Mozilla NSS statically linked
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As it is right now, NSS cannot be built statically. There is some work in progress in bug 534471 and bug 533014 (NSS and NSPR respectively) but these patches are quite old and likely don't apply any more. It seems that nobody at Mozilla is currently working on this.
As to Chromium, they are using a heavily patched NSS version. Also, they are using GYP to build NSS, not the Makefiles normally supplied with NSS. You could probably build their NSS version but I'm not sure whether it is really useful outside Chrome. The relevant directories are deps/third_party/nss/ and src/net/third_party/nss/, former being NSS without libssl and the latter being libssl only.