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 do I keep the same time input style in both firefox and chrome
- Adding Annotation with PDF.js
- Python geckodriver set up is unsuccesful
- In my range slider the track is coming over on thumb while working fine on Chrome
- NGINX doesn't resolve when website is accessing through Mozila Firefox browser
- Firefox WeakMap error but not in Chrome and Firefox Developer Edition
- Creating Transparent EGL surface
- Does Mozilla have contradictions about sizes and srcset attributes?
- Webscarab and the latest Mozilla version 121
- Anchor Element Download Attribute in Safari vs Chrome
- I'm encountering Selenium errors
- Crawl HTML data from an EngineSession
- Is there a Sublime Text package that serves similar function like the MDN References Intellisense popups of vscose?
- Javascript function for cleaning aliexpress links doesn't get always executed on Firefox
- How to use MediaRecorder() to record mobile resolution on Desktop
Related Questions in NSS
- What could cause nss3.dll loading return code 126, even though it is in the hardcoded path?
- NameError/KeyErrors while running Pyttsx3 on Mac
- Compilation of Mozilla NSS is failing on VS 2019
- Alternative to '/etc/group' through NSS
- java.security.ProviderException: Could not create trust object
- Getting SEC_ERROR_BAD_PASSWORD error on using libnss API PK11_Authenticate()
- CKR_KEY_TYPE_INCONSISTENT: when deriving signing key in FIPS mode using SunPKCS11 with NSS
- Unable to complete SSSD lookup to LDAP source
- SEC_ERROR_UNKNOWN_PKCS11_ERROR when trying to run curl command in rhel7
- KeyStore.setKeyEntry not working in FIPS mode
- PKCS11Exception when creating MAC instance on OpenJDK 11 in fips mode
- Initializing NSS with certpath: sql:/etc/pki/nssdb error
- Curl failed: NSS: client certificate not found (nickname not specified) - On Centos 7
- CentOS6 - curl NSS error -5961 resolved by updating packages. What did it actually do?
- Writing a custom nss hosts module
Related Questions in CERTUTIL
- certutil -addstore -user -f Root gives error_access_denied, although run as admin
- CRL is expired, but ChainStatus is telling me RevocationStatusUnknown
- Is there a simple backup program in existance that will perform a SHA256 hash check to verify data?
- Error using certutil -MergePFX - The system cannot find the file specified
- "The parameter is incorrect" error using "netsh http add sslcert" on Windows Server 2022
- Decoding Base64 files in windows
- How to iterate through FOR IN outputs with IF statements in Windows Batch?
- DDEV Install "unable to locate the package certutil"
- Issues adding my own custom CA in Firefox after updating to newer version
- 'CertUtil' is not recognized as the name of a cmdlet
- How can I install a certificate on a remote machine with cmd (psexec)
- SHA256 hash doesn't match download - what now?
- Certutil repair Code Signing Certificate in CurrentUser not LocalMachine
- Unhashing with certutil in batchfile
- Get Issuing CA from certutil dump or by serial number (Windows Server PKI)
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 # Hahtags
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.