Help me in finding the right JRE for encryption

HI ,
I have developed and tested Encryption using Ciphers and SecretKey , i used the JRE1.4 .But other components are being developed using JRE1.3.If i try to run my code in JRE1.3 i get many errors.
Is there anything i need to do before i integrate with other components on a diff JRE..
Thanks in anticipation...
Santosh

Hi Mark,
We are developing a big product and everything is in JRE1.3 ,we have no plans of upgrading to 1.4 for a mere security component.My question is
1.If i have to use JCE should i have JRE1.4.
2.The runtime error which i get is 'Algorithm DES not found'.Does DES only ship with JRE1.4
3.Can u suggest any step which can be useful for configuring it with JRE1.3
4.JRE1.4 is still in Beta right?
Thanks in anticipation...
Santosh

Similar Messages

  • Do help me to find the right macbook for me?

    i am a chemical engineering students. works lot on stuff like AUTOCAD, AUTODESK, MATLab, Solidwork, ChemCAD, Hysys and other chemical engineering softwares. Thank you

    Raj,
    Please post (to this forum) your entire error message and stack trace, as well as the part of your code that you think is causing the error.
    Good Luck,
    Avi.

  • Trying to Find the Right Phone for Me

    Hello,
    I'm thinking of switching to a BlackBerry, and could use a bit of help finding the right phone for me. I've browsed through them, but so far haven't been able to find what I'm looking for (and I'm not able to find out which phones have UMA or not in the compare section).
    Provider isn't important, as I'm fine changing my service.
    I'm looking for a phone that is:
    * Both WiFi and UMA compatible
    * GPS compatible
    * Preferably with a Camera
    Thanks for the help!

    This link may be useful to you:
    http://na.blackberry.com/eng/ataglance/networks/#t​ab_ddetail_subtab_wifi
    corrected url
    Message Edited by DigitalFrog on 06-26-2008 11:33 AM
    posted by DigitalFrog
    WARNING: May contain traces of nuts.

  • Cant find the right forum for this but can i restore my hd from time mch to a year ago and then restore individual files such as logic lprojects that are on same time mchne backup from last week?

    cant find the right forum for this but as i am having problems booting my macbook pro, keep having to reser pram etc and now wont boot at all.....
    aill this theoretically work?
    a. Restore entire macpro hard drive from time machine to a time over a year ago before problems started
    b. Restore more recent individual files such as logic projects individually from same time machine backup
    c. install any programs manually again only couple of vsts
    please answer direct question as i have tried everything else and nonhardware problems just will no longer boot after months of reseting each time
    cheers

    oops.  typo:  "I went ahead and befored the restore."  should be... I went ahead and performed the restore.

  • I did not find the right place for my question but Is Apple's products are shipped to the Gulf States by a company Aramex ?

    I did not find the right place for my question but Is Apple's products are shipped to the Gulf States by  Aramex ?

    An absolute URL will be a complete URL, it traces from the abosulte root of a file's location on a server...
    http://www.thesite.com/assets/images/Front_Page_Rotating_Banner/banners.xml
    A relative URL is anything short of including the http://domain..., and is read relative to wherever the file using it exists
    assets/images/Front_Page_Rotating_Banner/banners.xml
    In Flash files though, relative links need to be specified relative to the HTML page that embeds the swf.  So if the swf is in a different folder than the html page that embeds it, the swf's targeting must be adjusted as if it were actually in the html file's folder.

  • Pls help me to find the smartform name for RMA REQUEST(RMA)

    Hi Experts,
    Pls Tell me how too find the smartform name for RMA REQUEST(RMA)
    Pls help
    Thanks and regards
    Jaya

    WHat is RMA REQUEST form please ellobrate your query
    the smrat form tcode is SMARTFORMS.....you can try

  • Help me to find the right function Module

    Hi
    Can anybody help me out to find the function module that creates the public ABAPlogon group
    I have to do a task which is as mentioned below:
    Our BI configuration assumes that an ABAP logon group with the name “PUBLIC” exists. However,after A1S installation no such logon group is present. So, my  task is to find out, how we can create such a logon group (this means finding the right ABAP Function Module or BAPI)
    Kindly reply as soon as possible
    Thanks and Regards
    Neeta

    Hi san
    I have gone to se38 then typed LogonGroup* and pressed f4,then I got a Transaction INST_LOGONGROUP but that sets a logon value ALL-IN-ONE <sid> as the name of the logon group .its hard coded in it.
    What I need is a generalized function module that accepta the logon name as parameter and sets the value
    When we go to the transaction smlg we can see a screen where we set the logon group value.Whatever value we give it sets that value.How to find out what is the function module corresponding to that?
    I have debugged it but unable to track the function module.:-((
    Kindly help me out if you can..

  • Where can I find the right doc for SunStudio For Linux ?

    I can find the docs for SunStudio here, http://docs.sun.com/app/docs/doc/819-5265/6n7c29ck9?a=view
    but it seems that it doesn't right on linux platform.
    #include <stdio.h>
    int main(void)
    #if defined(sun)
            printf("sun defined \n");
    #else
            printf("sun undefined \n");
    #endif
    #if defined(unix)
            printf("unix defined \n");
    #else
            printf("unix undefined \n");
    #endif
    #if defined(sparc)
            printf("sparc defined \n");
    #else
            printf("sparc undefined \n");
    #endif
    #if defined(i386)
            printf("i386 defined \n");
    #else
            printf("i386 undefined \n");
    #endif
    #if defined(__sun)
            printf("__sun defined \n");
    #else
            printf("__sun undefined \n");
    #endif
    #if defined(__unix)
            printf("__unix defined \n");
    #else
            printf("__unix undefined \n");
    #endif
    #if defined(__SUNPRO_C)
            printf("__SUNPRO_C defined \n");
    #else
            printf("__SUNPRO_C undefined \n");
    #endif
    #if defined(__sparc)
            printf("__sparc defined \n");
    #else
            printf("__sparc undefined \n");
    #endif
    #if defined(__i386)
            printf("__i386 defined \n");
    #else
            printf("__i386 undefined \n");
    #endif
    #if defined(__SVR4)
            printf("__SVR4 defined \n");
    #else
            printf("__SVR4 undefined \n");
    #endif
            return 0;
    }[luoyi@qpd06 test]$ suncc -o test test.c
    [luoyi@qpd06 test]$ ./test
    sun undefined
    unix defined
    sparc undefined
    i386 undefined
    __sun undefined
    __unix defined
    __SUNPRO_C defined
    __sparc undefined
    __i386 undefined
    __SVR4 undefined
    where can I found the correct docs for SunStudio For Linux ?

    You can refer to cc man pages. Here is about predefinitions:
    Predefinitions:unix
    sparc (SPARC)
    i386 (x86)
    sun
    The above are not predefined in -Xc mode.
    These predefinitions are valid in all modes:
    __BUILTIN_VA_ARG_INCR
    __SUNPRO_C=0x590
    __SVR4(SPARC)
    __SunOS(Solaris)
    __SunOS_OSN.N(Solaris)
    __amd64(x86 with-m64)
    __gnu__linux(linux)
    __i386(x86)
    __linux(linux)
    __linux__(linux)
    __sparc(SPARC)
    __sparcv9(with-m64)
    __sun(Solaris)
    __unix
    __�uname -s�_�uname -r�
    __x86_64(x86)
    linux(x86,linux)
    The following is predefined in -Xa and -Xt modes only:
    __RESTRICT
    The compiler also predefines the object-like macro
    __PRAGMA_REDEFINE_EXTNAME,
    to indicate the pragma will be recognized.
    ...

  • Finding the right resolution for MBP to projector

    Hi there,
    I have a lecturer who uses a MBP 15" to project powerpoint slides and him using circuit modelling software.
    What I've noticed is the whole setup is quite cumbersome:
    eg:
    The projected image is not wide screen like the MBP (i am guessing the projector is at 1024x768)
    This means when he runs a simulation for eg. the output pops up in it's own window, and usually off the visible screen on the projector.
    needless to say, he spends alot of time awkwardly resizing windows and shifting them around just to illustrate a basic point.
    My question is, if I help him resize the resolution so his MBP matches the projector, will the MBP switch back to native when he unplugs it? Will the MBP remember the projector settings next time, and resize automatically when he plugs it in, or will he have to fiddle with resolutions everytime he plugs it in? ( if so, shame on you apple!)
    If so, does anyone know of a utility out there that would make this process easier? ie Detect that the projector is connected/disconnected and change the resolution accordingly.
    Thanks for your help - it's difficult watching him fiddle as the proj screen is behind him and he has to turn around to see what's acutally visible to the class! It should be easier than that - it's an Apple!
    Mac Book Pro Mac OS X (10.4)

    Hi
    I have the same issue - when I'm presenting, most of the time I use the customer's projector, so I have no idea what resolution it will be. My MBP 17" widescreen generally offers me different resolutions after the autodetect, but they're either larger than the projector display, or half the slides are missing on the right hand side.
    Is there a way to choose other resolutions?
    Regards
    Shaun

  • Please help me with selecting the right institute for me

    HI All,
    Please help me which institute I should select for my SAP SD training?
    ONE INSTITUTE COVERING THE FOLLOWING TOPICS:
    Sales overview
    Enterprise structure related to SD
    Master data, like Customer master data, material master data, condition master data and Output master data.
    Partner determination
    Sales document types
    Item categories
    Schedule line categories
    Pricing: Condition table, access sequence, Condition type, pricing procedure
    Stock Posting
    Free goods
    Bills of Material
    Material determination
    Material Listing and Exclusion
    Incompletion logs
    Revenue account determination
    Credit management
    Outline agreements like quantity contract, value contract and scheduling agreements
    Shipping process like Shipping point determination, Route determination, Shipping conditions picking ,PGI
    Delivery types
    Delivery item categories
    Invoice process
    Billing types
    Special sales processes like cash sales, rush orders ,consignment process and Third party process
    Return sales process
    Credit memo process
    Debit memo process
    Availability check
    Rebate processing
    Intercompany sales
    Output determination
    Copy control
    Integration with MM,FI
    Technical topics like ABAP tables, user exits and IDOC’s
    Real time scenario’s
                   OR
    OTHER INSTITUTE COVERING THE FOLLOWING TOPICS:
    1. Introduction to Supply chain management
    2. Introduction to SAP ERP package
    3. Introduction to ASAP implementation methodology
    4. Lecture Demo on Basic navigation skills in SAP R/3
    5. SAP landscape. Tips and tricks
    6. Introduction to Enterprise structure in SD
    7. Overview of Material master records
    8. Demo on ROH, HAL and FERT creation
    9. Hands on exercise on creation of material mastesr records in SAP
    10. Introduction to SD master data (Business partners, conditions and outputs)
    11. Introduction to order processing and Demo
    12. Hands on exercises on sales order processing
    13. Introduction to delivery process, picking and post goods issue process
    14. Introduction to stock transport orders and inter-company stock transport Orders
    15. Exercises on delivery with respect to sales orders
    16. Introduction to billing process (Customer billing, Inter-company, Proforma, Credit memo and Debit memo)
    17. Introduction pricing procedure, condition records, condition tables and access sequence.
    18. Configuration on SD sales order types, delivery and billing
    19. Warehouse management overview
    20. Introduction to SAP WM configuration
    21. Demo by instructor on configuration
    22. Develop configuration scripts
    23. Introduction to develop BPP
    24. Hands on exercises to students
    25. Introduction to WM master data
    26. Introduction to transaction data in WM
    27. Hands on exercises on creation of master data elements in WM
    28. Hands on exercises to students on WM transaction data
    29. Introduction to CTS process (SE10, SCC1)
    30. Demo on WM business scenarios and integration points
    31. Introduction to develop integration test scenarios. Develop test scripts
    32. Introduction to OSS notes and SAP Help
    33. Introduction to EAI tools, FID, RF Gun, MDE, SAP console and hand held devices
    34. Introduction to SAP bold on tools (SRM, CRM, BW, SEM, GTS, CIC, FSCM, DP, SNP, PP/DS, GATP, CIF and Plug in)
    35. Introduction to quick reference guides, cheat sheet, FAQ, work instructions, job aides, transaction aides, work instructions and change management
    36.Interface between SD & FI
    37.C forms, H forms
    38.Excise Related Invoices
    39.CIN configuration (taxes)
    40. Debugging with help of ABAP Tool
    41.Excise Returns Process with pricing details
    42.Order, Delivery, Billing, exicise, Output types configuration

    You should talk to various institute.

  • Please help me to find the drivers/software for SB Surround

    Hi all!
    Does anyone know how to find the drivers fo the SB Surround 5. external sound card?
    Since the HW looks quite similiar to the LIVE 24bit external I tried to install the drivers for it but they didnt work.
    I can not find the SB Surround 5. card in the auto update section.
    Thanks in advance/Bartek

    Here is the link
    http://support.creative.com/downloads/download.aspx?nDownloadId=0588
    The driver suite gives you all the software, plus the newest driver.
    Unfortunately, creative still hasnt listened to us and has not given us DDL. There was no real need to waste 60 bucks on this thing, if all it does is increase sound quality a tiny amount. When I saw the device I, along with many other customers, came to believe that it would allow for surround sound music. However, the device only outputs media that is already in surround sound, as 5. . I have tried AC3 filter, kx driver (wont work) , rednoreck (no asio) , and tons of random plugins for winamp. I have no idea how to get stereo upmixed to 5. with the spdif out on this card. I am going nuts because of this. If anyone knows how to do that please let me know !?

  • Can anyone help me to find the page list for my site?

    I cannot seem to find the icon which will lead me to the page list for my site. I need it to retrieve a lost page

    Do you mean that you can't find the "Choose" button on the top left of Adobe Contribute? I gues I'm not sure exactly what you mean by "Page list".
    If you are talking about something else, please give us more details as well as let us know what version of Adobe Contribute you are referring to.

  • Help me find the right processor for my HP Laptop

    I have an Hp dv7-6111sz (LZ664EA) All info are here : pavilion_dv7_6111sz_lz664ea
    I want to upgrade the stock cpu, everythung seems good in my Laptop but the CPU... im using the laptop for gaming, tested things and realized that my CPU is overnecking my GPU, So please what do you advice me? should I upgrade my cpu? if yes how and where to find better CPU? if no.... hmm why not? what are disadvantages other than over heating??... 
    And another thing, im not sure but is my hardware looks for gaming? I'm playing high-end games like Watch dogs and Assassin's Creed 4... hmm 20fps on medium settings, I think those games are poorly optimized,  idk. What do you recommend,  should I buy a new Laptop? I want it for gaming so what do you advice? thanks

    Hi,
    Page #1 of the first manual on the following link may help. There is a list of CPU's supported around that time:
         http://h10025.www1.hp.com/ewfrf/wc/manualCategory?cc=us&lc=en&product=5144913
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I have Firefox 3.0.10 and cannot seem to find the right plugin for reading pdfs. I've installed Adobe Reader but it doesn't work. Help.

    I cannot seem to find or install a plug in for reading pdfs in the browser window. I get that yellow bar telling me I need a plug in and click to install but nothing happens or changes

    You're going to need an '''older version''' of that extension from here: <br />
    https://addons.mozilla.org/en-US/firefox/addon/7518/versions/
    Firefox PDF Plugin version 1.1.2 = for 3.0.x and 3.5.x versions <br />
    The latest is only for Firefox 3.6.x versions.
    '''Or''', you could upgrade to a newer version of Firefox!

  • NEED HELP FINDING THE RIGHT APP FOR MY IPAD!!!!!!!!!!!

    I'M TRYING TO FIND A APP FOR MY IPAD THAT YOU CAN TYPE A LETTER OR PRESENTATION THEN CLICK PRINT AND IT WILL GO TO A WIRELESS PRINTER!!!!!!

    There are a large number of word processing programs available. A simple app store search in the productivity section will bring up a wide range, from Docs2Go to Pages and many in between. There are also simple text editors, such as Elements and others which are cheaper, but not as full featured.
    For printing, you need an HP printer that supports AirPrint. No special app on the iPad will allow you to print to any printer, just to those that are AirPrint enabled.
    Being on a PC, I don't know of any other printing options. If you have a Mac available, you can install Printopia, and print wirelessly to any printer your Mac can print to.

Maybe you are looking for