Java 8 64 bit on Windows with NSS for FIPS 140 compliance

I have asked this question on Stackoverflow but I am beginning to think that this may be a better forum to ask.
According to JEP 131, Java 8 should provide a PKCS#11 Crypto provider for 64 bit Windows:  https://blogs.oracle.com/mullan/entry/jep_131_pkcs_11_crypto.
With that in mind, I downloaded and built both 32 and 64 bit versions of NSS with NSPR using these instructions:  https://developer.mozilla.org/en-US/docs/NSS_Sources_Building_Testing
I downloaded Java 8 for Windows 64 build b118, configured the java.security file and created a nss.cfg file:
Excerpt from java.security file:
security.provider.1=sun.security.provider.Sun
security.provider.2=sun.security.rsa.SunRsaSign
security.provider.3=sun.security.ec.SunEC
security.provider.4=com.sun.net.ssl.internal.ssl.Provider SunPKCS11-NSS
security.provider.5=com.sun.crypto.provider.SunJCE
security.provider.6=sun.security.jgss.SunProvider
security.provider.7=com.sun.security.sasl.Provider
security.provider.8=org.jcp.xml.dsig.internal.dom.XMLDSigRI
security.provider.9=sun.security.smartcardio.SunPCSC
security.provider.10=sun.security.pkcs11.SunPKCS11 /devel/nss.cfg
From my nss.cfg file:
# Use NSS as a FIPS-140 compliant cryptographic token
# SunPKCS11-NSS
name = NSS
#32 bit
#nssLibraryDirectory = C:\devel\nss\nss-3.15.3.1\dist\WINNT6.1_DBG.OBJ\lib
#64 bit
nssLibraryDirectory = C:\devel\nss\nss-3.15.3.1\dist\WINNT6.1_64_DBG.OBJ\lib
#non FIPS
#nssDbMode = noDb
#attributes = compatibility
#FIPS
nssSecmodDirectory = c:\devel\fipsdb
nssModule = fips
I ran the test suite that comes with NSS and it looks like all of the encryption/decryption tests passed (did have some issues with the tests that required hostname/domainname but that has to do with the Windows environment).
So here is the problem. I run my test encryption app on Java 7 32 bit with the 32 bit version of NSS and everything works great. When I attempt to run Java 8 64 bit with 64 bit NSS I get the following error:
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 sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at sun.security.jca.ProviderConfig$2.run(Unknown Source)
at sun.security.jca.ProviderConfig$2.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.security.jca.ProviderConfig.doLoadProvider(Unknown Source)
at sun.security.jca.ProviderConfig.getProvider(Unknown Source)
at sun.security.jca.ProviderList.getProvider(Unknown Source)
at sun.security.jca.ProviderList.getIndex(Unknown Source)
at sun.security.jca.ProviderList.getProviderConfig(Unknown Source)
at sun.security.jca.ProviderList.getProvider(Unknown Source)
at java.security.Security.getProvider(Unknown Source)
at sun.security.ssl.SunJSSE.<init>(Unknown Source)
at sun.security.ssl.SunJSSE.<init>(Unknown Source)
at com.sun.net.ssl.internal.ssl.Provider.<init>(Unknown Source)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Unknown Source)
at sun.security.jca.ProviderConfig$2.run(Unknown Source)
at sun.security.jca.ProviderConfig$2.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at sun.security.jca.ProviderConfig.doLoadProvider(Unknown Source)
at sun.security.jca.ProviderConfig.getProvider(Unknown Source)
at sun.security.jca.ProviderList.getProvider(Unknown Source)
at sun.security.jca.ProviderList$ServiceList.tryGet(Unknown Source)
at sun.security.jca.ProviderList$ServiceList.access$200(Unknown Source)
at sun.security.jca.ProviderList$ServiceList$1.hasNext(Unknown Source)
at javax.crypto.KeyGenerator.nextSpi(KeyGenerator.java:323)
at javax.crypto.KeyGenerator.<init>(KeyGenerator.java:158)
at javax.crypto.KeyGenerator.getInstance(KeyGenerator.java:208)
at STSAESEncryption.generateKeyWithGenerator(STSAESEncryption.java:74)
at Main.main(Main.java:24)
Caused by: java.io.IOException: %1 is not a valid Win32 application.
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)
... 36 more
Has JEP 131 been implemented with Windows/Java 64 bit as of b119?  If so has it been verified to work with NSS or should I submit a bug report?  I did download the code and the error is occurring in the following block of code at the line in bold (also with the arrow by it):
public synchronized void initialize(DbMode dbMode, String configDir,
        String nssLibDir, boolean nssOptimizeSpace) throws IOException {
        if (isInitialized()) {
            throw new IOException("NSS is already initialized");
        if (dbMode == null) {
            throw new NullPointerException();
        if ((dbMode != DbMode.NO_DB) && (configDir == null)) {
            throw new NullPointerException();
        String platformLibName = System.mapLibraryName("nss3");
        String platformPath;
        if (nssLibDir == null) {
            platformPath = platformLibName;
        } else {
            File base = new File(nssLibDir);
            if (base.isDirectory() == false) {
                throw new IOException("nssLibDir must be a directory:" + nssLibDir);
            File platformFile = new File(base, platformLibName);
            if (platformFile.isFile() == false) {
                throw new FileNotFoundException(platformFile.getPath());
            platformPath = platformFile.getPath();
        if (configDir != null) {
            File configBase = new File(configDir);
            if (configBase.isDirectory() == false ) {
                throw new IOException("configDir must be a directory: " + configDir);
            File secmodFile = new File(configBase, "secmod.db");
            if (secmodFile.isFile() == false) {
                throw new FileNotFoundException(secmodFile.getPath());
        if (DEBUG) System.out.println("lib: " + platformPath);
--->   nssHandle = nssLoadLibrary(platformPath);
        if (DEBUG) System.out.println("handle: " + nssHandle);
        fetchVersions();
        if (supported == false) {
            throw new IOException
                ("The specified version of NSS is incompatible, "
                + "3.7 or later required");
        if (DEBUG) System.out.println("dir: " + configDir);
        boolean initok = nssInitialize(dbMode.functionName, nssHandle,
            configDir, nssOptimizeSpace);
        if (DEBUG) System.out.println("init: " + initok);
        if (initok == false) {
            throw new IOException("NSS initialization failed");
        this.configDir = configDir;
        this.nssLibDir = nssLibDir;
Any help or advise about filing a bug report would be appreciated.
Thanks,

Had a few similar short system freezes, after installing Windows 8 x64 on 13” MacBook Pro Mid-2010 with BootCamp 5.0.5033.
There is a suggestion that DisableDynamicTick may fix the problem: https://discussions.apple.com/message/21565295#21565295. There were similar topics at Microsoft forums: 1, 2, 3. It was said “that this will likely reduce system battery life, so it should be undone when you update your Windows build or if it doesn't resolve your issue”, and that “this problem is resolved in the release versions of Windows 8”.
Another possibility is that there is indeed a buggy driver, within BootCamp 5.0.5033, or a 3rd party, like a wireless network driver in the following case http://answers.microsoft.com/en-us/windows/forum/windows_8-performance/system-fr eeze-randomly-after-installing-windows-8/49488183-26cf-4389-af21-a85dc366c99a?pa ge=2#LastReply.
The problem has been noticeable on my MacBook, but not annoying enough yet to spend time troubleshooting. If you find a robust solution, using the links above or other method, it would be interesting to know.
HTH

Similar Messages

  • I am receiving a lot of pop-up ads on website pages. It has only recently started happening. They open new windows with ads for online gambling, online dating and other things. They are annoying and I want them shut off. Please help me

    I have recently started seeing millions of pop-up ads on website pages. It is not something that normally happens. They open new windows with ads for online gambling, online dating among other things. I am growing sick and tired of these ads, and have tried multiple things. I have uninstalled and reinstalled software, I have blocked pop-up ads and unenabled Java script. I have tried everything I could find, but nothing has worked. I have even downloaded AdBlock and Clean Genius. Nothing has even remotely changed this annoying trait. I hope this can be a quick fix I can perform and not something that will have to be done by a tech-hand. Please, if you know anything about this issue, let me know how to fix it.
    Thanks.

    Unfortunately, you have installed malware by clicking on a pop up ad.
    Removal instructions here >>  The Safe Mac » Adware Removal Guide
    Uninstall CleanGenius >  Mac App uninstaller: How to uninstall the Macintosh applications with CleanGenius uninstaller on Mac OS X?
    Third party maintenance utilities are not necessary on a Mac and can actually do more harm than good and cannot remove malware > Mac App uninstaller: How to uninstall the Macintosh applications with CleanGenius uninstaller on Mac OS X?

  • 32 bit ATI Windows 7 drivers for the tm2t?

    Hi,
    I'm trying to get my 32-bit (I need 32-bit because I have some other devices which only have 32-bit drivers) Windows 7 (fresh install) on my tm2t to work... but HP's "32-bit" Radeon drivers located here fail to install:
    http://h10025.www1.hp.com/ewfrf/wc/softwareCategory?os=4062&lc=en&cc=us&dlc=en&sw_lang=&product=4121...
    I've even tried the older version and it doesn't work as well. Strangely in the older version is a PDF document that seems to indicate that HP engineering has tested and delivered both the 64 and 32 bit versions...
    Video Driver Release HP LUKE SG 1.0 M93
    Packaging Version 8.672.4-091125a-092132C-HP
    0OS Supported WIN7 32 & 64
    Certification Status WHQLCERTIFIED
    Significant file
    (version)
    ATIKMDAG.SYS
    (8.01.01.973)
    LIST OF FUNCTIONAL CHANGES and BUG FIXES (includes all OTS, EPR and ECR)
    Packaging Version OTS/
    EPR/
    ECR/
    others
    Description
    8.672.4-091125a
    (BR No. – 092132)
    N/A
    N/A
    N/A
    • Updated to the latest base build 8.672.4 RC3.
    • Intel Driver Version 8.15.10.1892.
    • WHQL CERTIFIED
    KEY KNOWN ISSUES OR MISSING FUNCTIONALITY
    Issue Comments
    SETUP ASIC IDs ATI Mobility Radeon HD 4550 (9555)
    I've contacted support and they have tried to escalate this for me, but since then there hasn't been any updates since, so I thought I would try this channel as well. I'm hoping someone else from HP is reading this and will help me out.
    BTW this isn't a new problem. I wished I had known it existed before and perhaps I would have avoided the tm2t and went for the X200t as has this other person (it seems he gave up on HP and returned the tm2t... so HP this is affecting your sales)...
    http://forum.tabletpcreview.com/hp-touchsmart-tm2-wacom/31065-32-bit-windows-7-ati-driver.html
    howard.

    Hi,
    For those who are in the same boat as me (and having NO follow up support from HP   ) Here is a tip, download and install the most recent 32 bit Vista/Win7 ATI Mobility drivers. This current version does (finally!) have the support for the Radeon HD 4550 (9555). Here's the link:
    https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/mobile/10-7_mobility_vista_win7_32_dd_cc...
    However this is just a partial fix. The switchable graphics does not work since this is the generic driver set from ATI. If anyone has a clue on how to hack/install the required stuff in please post here! Otherwise we'll need to wait on HP to provide this. HELLO HP?!

  • Resize animation in browser window with toolkit for createjs

    Hi. I'.m a flash newbie with little coding experience. I have an animation that I created in flash that I exported to html5 with toolkit for createjs. It looks good, however I would like to have the animation be proportionally sized to the browser window, so that it can be viewed on a variey of devices. My iPhone seems to adjust the size, however when I view it on the desktop, the bottom gets cut off, and remains the same size when I resize the browser window. Is there any way to have the animaton resize according to the browser window?
    Thanks
    Tom

    Great news! I used media queries inside of CSS and got my home page to work on a nice 1280x720 effortlessly However, i have a slideshow script that has the image running 1000x400 and I am wanting to know if there is a way to access the variable of this script:
    // JavaScript Document
    var mygallery=new fadeSlideShow({
        wrapperid: "slideshow", //ID of blank DIV on page to house Slideshow
        dimensions: [1000, 400], //width/height of gallery in pixels. Should reflect dimensions of largest image
        imagearray: [
        ["slideshow/XavierHeadSlide1.jpg"],
            ["slideshow/XavierHeadSlide2.jpg"], ["slideshow/XavierHeadSlide3.jpg"]
             //<--no trailing comma after very last image element!
        displaymode: {type:'auto', pause:1500, cycles:0, wraparound:false},
        persist: false, //remember last viewed slide and recall within same session?
        fadeduration: 2000, //transition duration (milliseconds)
        descreveal: "ondemand",
        togglerid: ""
    I want to access the "dimensions" variable in CSS so I can modify the size without having to create a second image that is slighty smaller... I tried setting the slideshow DIV as a CSS class, but it just simply cut off the image.
    thanks a bunch for all of your help on this matter.

  • How to change the Windows Registry to enable FIPS 140 in Acrobat Pro XI?

    Is there a set of instructions that identifies the registry key to enable FIPS 140?

    http://www.adobe.com/devnet-docs/acrobatetk/tools/PrefRef/Windows/AVGeneral.html#FIPSCompl iance
    Also some general info: 2   Pre-deployment Configuration — Digital Signatures Guide for IT
    hth,
    Ben

  • Error when installing certificate - FIPS-140 compliance.

    Hi,
    I am having an issue installing a certificate on my LaserJet M750 printer.  The error is: "The cryptographic algorithms used in the ID or CA certificate do not comply with FIPS-140."
    We can recreate the issue by: 
    converting cert and key to pfx
    selecting "Networking"
    login
    selecting "Certificates"
    selecting "Configure under Jetdirect Certificate".
    selecting "Import Certificate and Private Key".
    selecting "Browse" and choosing converted pfx file.
    provide password and select finish.
    Any help is greatly appreciated.  I can provide more information if necessary.
    Thanks!
    BL

    If your phone doesn't work (can't turn on), try a hard reset.Turn off your phone. Press and hold three keys together, the green, the * key, and the number 3.Then turn on your phone and don't let the keys before you see the nokia hands logo (or the formatting screen).
    If you want to thank someone, just click on the blue star at the bottom of their post

  • Open dialog box window with checkboxes for each child record - Please Help

    Hello Everybody
    I have a 10g form with master record and 20 child records. In the child record form, currently there is a “Notes” Editor, which pops up when user click the “Edit” button. In the “Notes” editor, user enters remarks if anything is missing. For example, typical remarks will be: Statement is missing, LOC paper is missing etc.
    Now, I would like to replace “Notes” editor with a dialog box. In the dialog box , I would like to add checkboxes with values “Statement is missing” and “LOC paper is missing” etc. along with “Notes” field. The user can select checkboxes. The value of the checkboxes should go in the “Notes” field with the ability to edit it. This way, user doesn’t need to type the most common notes every time.
    I have created a “NewNotes” dialog box with checkboxes and multiline text Item. It is pops up when I click on the button. I have also created to WHEN_CHECKBOC_CHANGED trigger for each checkboxes so that the its value will go in a multiline text item.
    But, I am not sure how I can link “NewNotes” dialog box to the each record in child record block. I would really appreciate it if anybody could give me some idea.
    Thanks,

    if i understand correctly you have a note item (based on table) on every child record? when you open the dialog box: how do you put data from notes to dialog box? in the same way as you can write it back ...

  • How do i monitor performance in the system of a Java program in Windows XP?

    I want to record the CPU usage and Memory usage on an hourly basis programatically, for an already running java class in Windows XP environment for the purpose of testing the Java class. The recording has to be done independent of the java class.By Cpu usage and Memory usage , i need to know how much of the computer's memory and CPU has been used by the java class.
    I tried the HPROF tool available with J2SE 5.0, but it gives the details of each of the functions' usage in the program's allocated space in memory. moreover, it is not independent of the execution of the class.
    The other option is to make use of the Performance tool available in Windows Xp->Administrative tools. This is a complex procedure, and i am not sure of how to proceed in this direction.

    You can use the windows performance monitor (perfmon.exe / perfmon.msc). I don't know wther it is also included in the XP Home Edition. But this is the tool you are looking for. It can display the information in realtime but also can write to a protocoll.
    Here's a shor description of what to do (i have a german windows so i'm more or less guessing the english terms)
    - Start perfmon.msc
    - In the tree on the you can see "systemonitor" (the realtime display) and "performance protocolls and warnings"
    - open "performance protocalls and warnings", the first sub element should be something like"performance protocalls" or "performance indicator"
    - open the context menu for it and create a new protocoll settings.
    - add the information to it you are interested in and make other changes if you want
    - start the new configuration
    once you have the information you can display it it in the systemmonitor by selecting "display information from protocal" from the toolbar
    It will take some time till you know what you are doing (and most of the information the performance monitor is useless to 99% of the people). But its a quite usfull tool once you know how to use it

  • Lync FIPS 140-2 encryption for Data in Transit Certificate?

    I work for an organization that has deployed Lync 2013 throughout the enterprise. 
    We have no need for “Data at Rest” encryption on the servers or clients at this time, but we do have a customer requirement for FIPS 140-2 encryption for “Data in Transit”?  Does Lync provide data in transit encryption utilizing one of the National
    Institute of Standards and Technology (NIST) approved modules by default? If so, have all the traffic types been “Certified” compliant (i.e. Server-to-Server, Client-to-Server, IM, Audio, Video, Desktop Sharing, web conferencing, etc…)? 
    I’ve read all the technet articles and looked at the following links, but it is not clear to me. 
    I cannot find the certification number and certificate for the FIPS 140-2 validation for Lync's encryption module on either the Microsoft or NIST websites.
    http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/140val-all.htm
    https://technet.microsoft.com/en-us/library/security/cc750357.aspx

    Lync Server 2013 and Microsoft Exchange Server 2010 Service Pack 1 (SP1) operate with support for Federal Information Processing Standard (FIPS) 140-2 algorithms if the Windows Server 2008 R2 operating systems
    are configured to use the FIPS 140-2 algorithms for system cryptography. To implement
    FIPS support, you must configure each server running Lync Server 2013 to support it. For details about
    FIPS-compliant algorithms and how to implement
    FIPS support, see Microsoft Knowledge Base article 811833, "System cryptography: Use
    FIPS compliant algorithms for encryption, hashing, and signing security setting in Windows XP and in later versions of Windows at
    <linktext xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5">http://go.microsoft.com/fwlink/p/?linkid=3052&kbid=811833</linktext>. For details about
    FIPS 140-2 support and limitations in Exchange 2010, see "Exchange 2010 SP1 and Support for
    FIPS Compliant Algorithms" at
    <linktext xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5">http://go.microsoft.com/fwlink/p/?linkId=205335</linktext>.
    For More information on FIPS in Lync server 2013 
    http://technet.microsoft.com/en-us/library/jj205114.aspx 
    http://technet.microsoft.com/en-us/library/jj205084.aspx 
    Please remember, if you see a post that helped you please click ;Vote As Helpful" and if it answered your question please click "Mark As Answer" Regards Edwin Anthony Joseph

  • How to "open all in tabs" bookmarks including links in second level folders (maybe each in new window with tabs) It opens only first level links... thanks

    I mean, if I go to the main menu, bookmarks->some folder (this "some folder" includes a 5 bookmarks and "some folder 1", "some folder 2" each with own bookmarks), click "open all in tabs", then it opens only 5 bookmarks, but I want it to open bookmarks from "some folder 1", "some folder 2" too at the same time! (maybe in new windows with tabs for each "some folder 1", "some folder 2") doesn't matter.
    Is there a way to do this? Maybe addons? extensions? Maybe you could add this in future versions...
    THanks. It would be great for me and my friends. (they also asked about this)
    Sergey Knyazyuk

    Try with Firefox Addons
    *addons.mozilla.org

  • Time Table for File Vault 2 FIPS-140-2 Certification

    I believe I read something that Lion/File Vault 2 encryption was submitted to NIST for FIPS-140-2 certification.   I know that IOS 5 is first to be certified, but does anyone know the time table for Lion/File Vault 2 to be certified?     I was told a few months ago that it would be certified by 12/31/2011.   Any update would be appreciated.  

    Disclosure: I work for NIST, but not in the Computer Security Div. (the group that issues the certificates).
    Looking at the NIST list of validated modules, Lion's crypto module recieved its certification on 3/30/12, but I don't know if this applies to all apps or just the libraries.  It doesn't apply to 3rd party apps yet (note says it will be re-evaluated for that use).  I wouldn't think File Vault is a "third party" app. 
    I'll post more if I find out anything.

  • NSS FIPS 140-2 encryption for Glassfish App Server on Windows

    We would like to configure Java such that our web service communications will be encrypted in a manner that is FIPS 140-2 compliant.
    I see here that Sun has achieved success in compliance testing in conjunction with the NSS libraries from Mozilla:
    http://csrc.nist.gov/groups/STM/cmvp/documents/140-1/1401val2007.htm#814
    I found Andrea's excellent blog which took me through steps in setting up the ..\jre\lib\security\java.security file and in setting up the nss.cfg file:
    http://blogs.sun.com/andreas/entry/elliptic_curve_cryptography_in_java
    However, when I go to the download of Mozilla \ NSS the latest releases only provide the C code tar bundles. The latest release that provided the binaries for Windows was 3.11 and that was for Windows NT.
    ftp://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/NSS_3_11_RTM/
    I was therefore hoping that someone might have a step-by-step such that I could create these binaries for Windows XP and Windows Vista. Or even better someone might know of a site where I could download them.
    Other information: Our installation of Glassfish also has Metro installed.
    Thanks for any help or advice.

    Again you are a winner!
    I found certutil and modutil under C:\Mozilla\nss-3.12.4-with-nspr-4.8\mozilla\dist\WINNT5.1_DBG.OBJ\bin and the -N -d . was exactly what I needed.
    I found this blog: http://blogs.sun.com/arnabold/entry/jks_nss_and_glassfish It is a little dated but I need to somehow get Glassfish start-up to recognize my keystore as FIPS.
    The error that I am seeing when I attempt to start GlassfishV2.1 from Netbeans is:
    CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.6.0_13] from [Sun Microsystems Inc.]
    Using MQ RA for Broker lifecycle control
    SEC1002: Security Manager is OFF.
    java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.server.PELaunch.main(PELaunch.java:415)
    Caused by: java.lang.ExceptionInInitializerError
    at com.sun.enterprise.security.SecurityLifecycle.onInitialization(SecurityLifecycle.java:101)
    at com.sun.enterprise.server.ApplicationServer.onInitialization(ApplicationServer.java:262)
    at com.sun.enterprise.server.ondemand.OnDemandServer.onInitialization(OnDemandServer.java:103)
    at com.sun.enterprise.server.PEMain.run(PEMain.java:399)
    at com.sun.enterprise.server.PEMain.main(PEMain.java:336)
    ... 5 more
    Caused by: java.lang.IllegalStateException: java.security.KeyStoreException: FIPS mode: KeyStore must be from provider SunPKCS11-NSS
    at com.sun.enterprise.security.SSLUtils.<clinit>(SSLUtils.java:128)
    ... 10 more
    Caused by: java.security.KeyStoreException: FIPS mode: KeyStore must be from provider SunPKCS11-NSS
    at com.sun.net.ssl.internal.ssl.KeyManagerFactoryImpl$SunX509.engineInit(KeyManagerFactoryImpl.java:44)
    at javax.net.ssl.KeyManagerFactory.init(KeyManagerFactory.java:239)
    at com.sun.enterprise.security.SSLUtils.initKeyManagers(SSLUtils.java:320)
    at com.sun.enterprise.security.SSLUtils.<clinit>(SSLUtils.java:106)
    ... 10 more
    I am hoping perhaps someone can tell me how to overcome this one, or point me to a blog that would provide instructions.
    Thanks again for your help.

  • For the 2013 versions of macbook pro should I purchase 32 bit windows or 64 bit version to be able to install it on macbook and use windows with bootcamp?

    for the 2013 versions of macbook pro should I purchase 32 bit windows or 64 bit version to be able to install it on macbook and use windows with bootcamp?

    Then you might check at any of the other university book stores or software stores or any computer store in town for the 64-bit version.
    If you want to use the 32-bit version from the school (you probably get it for free or very cheap) then you could purchase Parallels and run it as a virtual machine concurrently with OS X. There are some caveats:
    1. You have to purchase Parallels (there may be an academic discount.) List is $79.95.
    2. Your computer needs minimally 4 GBs of RAM, but realistically 8 GBs would be better.
    3. Parallels creates a pseudo-drive on your hard drive. It could easily require 50 GBs of disk space.
    Accommodating these might be more costly than buying 64-bit Windows 7. And, if you look online you may find them with an academic discount (or may be able to order it through the school.)

  • What's up with iTunes for Windows 7 64 bit?  Makes my PC run like a 286 on Windows 3.11.

    What's up with iTunes for Windows 7 64 bit?  So slow and draggy.  Makes my high end PC with multi-core processor and video card run like a 286.  Even did this after doing a fresh install of the operating system with the latest version of iTunes. 
    No other software does this on my machine.  There has to be some crazy issue causing this.

    Try this,
    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 &amp; above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    Now launch your iTunes and see if it is working now.

  • Recompile java 1.5 (Windows 32 bits) for 64 bits (linux)

    Hello, somebody can say to me please, if it is necessary to make some step intermediate (for example recompile) when (development) from your PC to 32 bits in eclipse with java 1.5 and the application you also execute it in a machine to 64 bits with Linux - with java 1.5?
    The question is because I do not know if the code of bytes generated in the PC (to 32 bits) takes advantage of kindness the machine linux to 64 bits (it assumes that yes because in both machines it is java 1,5, but it is the doubt?), or it is better recompile again to 64 bits... Thanks. Greetings.
    excuse my english

    Know: Linux AMD64 self-extracting file Don't be confused by the "AMD", because The Intel 64Bit CPU's just integrate the AMD 64Bit core.

Maybe you are looking for

  • Cannot Edit a Form in Adobe Acrobat Pro Xi - use Livecycle

    Hi all, I was advised to buy Adobe Pro XI yesterday by the Direct Sales Adobe team because it includes "everything I need" to create and EDIT PDF forms.  I actually rang up to buy X but was told it was now XI. I tried to edit a form today and got thi

  • PSE 7 editor problems

    I loaded PSE 7 on a Dell 5100 dimension with all the necessary system requirements but when I try to open the editor it wont open and reports an error,I have removed any other photo processing packages or old adobe programmes,I also loaded PSE 7 on a

  • IPhone picks up Notes address /o=SCD/ou=FOXASIA/cn= etc... from Outlook

    I am trying to trouble shoot just one small problem with iPhone Contact sync with Exchange... [Otherwise, Sync works just fine with Outlook 2003] Contacts are captured from the Exchange Server Global Address Book to my Contacts in Outlook 2003, then

  • Ipod/itunes issues!!!!!!!!!

    I have an ipod shuffle and am unable to do anything with it. I can't update the songs, restore it, etc. Same thing with my wife's ipod nano. I'm also unable to burn cds from itunes. Any help would be greatly appreciated.

  • Airport Express is unable to be fixed

    Hello, I have a problem with the captioned which the light became amber. I have tried everything such as soft reset and hard reset, still it couldn't be picked up by the airport utility. I thought I was doing something wrong and I called technical su