Can we use JCE embedded into JAVA 1.5 outside USA and Canada?

Hello all,
in the old JCE 1.2.2 (http://java.sun.com/products/archive/jce/) where was a restriction: RESTRICTED TO THE UNITED STATES AND CANADA. If you do not reside in the United States or Canada, you will not be able to download this software.
Is there the same restriction also in the embedded JCE into java 1.5 ?
I can not see any restriction. is it correct?
Could you give me the link where I can find the restriction or the license and term of use about JCE embedded in JAVA 1.5?
Thanks
Matteo

Those restrictions were lifted during the Clinton administration.

Similar Messages

  • Can you use an Australian purchased ipad 3G in the USA and Canada and can you get Aussie sim card work there

    My daughter is going to the US and Canda soon and we want to get an ipad to contact.
    Can you use an ipad purchased in Australia?
    Also is it best to buy a prepaid sim card here or overthere?

    The 3G telecom in the USA is AT&T, so she will need an AT&T microSIM and then to activate a data plan from the iPad.
    http://www.wireless.att.com/cell-phone-service/accessory-details/?wtSlotClick=1- 0054JG-0-1&WT.svl=calltoaction&q_categoryid=cat2180038&q_sku=sku4530230&q_manufa cturer=&q_model=#fbid=ugXpZcaKbxs
    She can activate the data plan for a month with a bank card and then deactivate as she wishes. Hopefully AT&T will allow an international bank card.
    http://www.att.com/shop/wireless/devices/ipad.jsp
    A telecom with iPad service in Canada is Rogers;
    http://www.rogers.com/web/content/ipad-dataplans

  • Can i use iPhone T-mobile contract free version outside USA with any carrier?

    Hello everyone,
    I am planning to purchase the iPhone 6 via Apple online store, on or after september 19th.
    I am living in Sri Lanka and obviously we do not have AT&T or any other service providers listed, here. My only option would be to buy the T-mobile 'contract-free' version if I am not willing to wait till Apple releases an unlocked 'sim-free' version within next few months. Therefor, I want to confirm and make sure that I can use the iPhone T-Mobile version with any carrier of my choice and is not locked only for T-mobile and can be used here in Sri Lanka.
    Hoping for your kind support
    Regards,
    Nimasha

    Hey Nicolas,
    I had the same question, so I went to the Apple chat, and I asked the same, 'cause I need an iPhone to works in South America and Europe as well.
    so what the person on the chat  answered me was that the T-mobile cellphone comes Unlocked, so you can use it anywhere.
    I Guess I can get it and now.

  • How can i use C/Javascript/php/Java in flex?

    can i embed these language into my flex project?
    since i have to check harddisk space, free memory remain. Also, i need to check the pixel of photos before the photos becoming bitmapdata
    please help~

    saipanBETTY0509 wrote:
    Subject: How can i use C/Javascript/php/Java in flex?
    can i embed these language into my flex project?
    You can't.  Why do you want to do this?
    saipanBETTY0509 wrote:
    since i have to check harddisk space, free memory remain. Also, i need to check the pixel of photos before the photos becoming bitmapdata
    I think what this means is "I want to check to see how much hard disk space is available.  Also, I need to check the pixel dimensions of an image."
    Is that right?
    There is no way in the Flash Player (as far as I know) that you can determine the amount of free disk space.  However, in AIR you can use air.File.applicationStorageDirectory.spaceAvailable to determine the storage space available in the application storage directory.
    As far as determining the dimensions of an image, there are plenty of good resources out there on that.  Maybe this one will be helpful to you?
    http://www.yswfblog.com/blog/2008/12/22/flash-10-experiments-the-warholizer-loading-and-pr ocessing-local-images/
      -Josh

  • Can I Use Jce in applet

    Hi all,
    Thanks for everybody first if you look at my question and try to help me to find out the problem.
    I need to write a applet which can let people to use
    the jce's des function to encipher the user's password and
    id from the homepage.
    I write a applet already. It work fine as a application.
    But it doesn't work when I run it as a applet. Does the problem come from the security problem because I need
    to Load a sun_jce provider in a clien machine ?
    Can I use JCE in applet ?
    If it is ok to use jce in developing applet do I need to sign the applet before run it in web and which file I need to sign.
    Btw, I use the archive tag in html file to make user get the whole jce jar file. does it Ok.
    Followin is my source code
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import java.security.*;
    import sun.misc.*;
    import java.applet.*;
    import java.awt.*;
    public class DesApplet extends Applet{
         public static void main(String[] arg) throws Exception{
              DesApplet des = new DesApplet();
              des.CallDes();
         public void init(){
              CallDes();
         public void paint(Graphics g){
         public CallDes(){
              Cipher desCipher;
              int i;                              
              try{
                   Security.addProvider(new com.sun.crypto.provider.SunJCE());
                   KeyGenerator keygen = KeyGenerator.getInstance("DES");
                   SecretKey desKey = new SecretKeySpec("11111111".getBytes(),"DES");
                   System.out.println("Hello");
                   desCipher = Cipher.getInstance("DES/ECB/NoPadding");
                   desCipher.init(Cipher.ENCRYPT_MODE,desKey);
                   byte[] cleartext = "00000000".getBytes();
                   String value = convert_int_to_hex(cleartext,8);
                   System.out.println("cleartext is:"+value);
                   byte[] ciphertext = desCipher.doFinal(cleartext);
                   value = convert_int_to_hex(ciphertext,8);
                   System.out.println("ciphertext is:"+value);
                   desCipher.init(Cipher.DECRYPT_MODE,desKey);
                   byte[] cleartext1 = desCipher.doFinal(ciphertext);;
                   value = convert_int_to_hex(cleartext1,8);
                   System.out.println("cleartext1 is:"+value);
              }catch(Exception e){System.err.println(e);}
         public String convert_int_to_hex(byte[] value, int len) {
         int i;
         int j;
         byte tmp;
         byte[] temp = new byte[len*2];
         char[] chars = new char[len*2];
         String result = new String();
         for (i=0; i<len; i++)
         if (value[i] < 0)
         temp[i*2] = (byte)((value[i] & 0xF0) >>> 4);
         temp[i*2+1] = (byte)(value[i] & 0x0F);
         else
         temp[i*2] = (byte)(value[i] / 16);
         temp[i*2+1] = (byte)(value[i] % 16);
         for (i=0; i<len*2; i++)
         if (temp[i] > 9)
         chars[i] = (char)(temp[i] - 10 + 65);
         else
         chars[i] = (char)(temp[i] + 48);
         result = result.concat(result.valueOf(chars));
         return result;

    I have a server and a client.
    Server has jdk1.4. client is an applet. I need to encrypt the username and password that are sent from client to the server.
    I am able to encrypt and decrypt using JCE's DES on server side, since jdk1.4 has JCE provider installed by default. Since the applet may be running on any browser which may not have JCE supported. Is it possible for me to send the JCE jar file along with the applet and somehow enable the client applet to encrypt the user name and password and send to server.
    Thanks a lot,
    Gagan.

  • How can i use Unix database in java?

    How can i use Unix database in Java?
    Message was edited by:
    JPro

    I have not a clue about FoxPro, but the db then is FoxPro and not Unix. The better question would be "How do I connect to FoxPro DB running on Unix with JDBC?".
    My answer to that would be, search the Internet for a JDBC driver.

  • What kind of video formats can i use to import into imovie?

    what kind of video formats can i use to import into imovie?

    Hello,
    Adobe stopped supporting flash for android since ICS. You may still be able to download the latest (old) flash player "at your own risk" from Adobe archived flash player versions:
    http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html
    Please read the disclaimer at the end as it is not advised to install unsupported flash versions.
    As for video streaming, there are lot of apps for that and it's just a matter of your preference.
    Hope that helps

  • Can I use your Embeded LDAP Server?

    Hi,
    WebLogic Server 7.0 and 8.1 comes with an embedded LDAP Server?
    I have an application that requires iPlanet Directory Server for 7000 entries.
    Can I use the embedded LDAP Server to put my own entries and use it?
    Regards,
    Shanmugavel R P

    Are these videos on mozilla.org somewhere? Please see the last section of the following page, on "Site Licensing": http://www.mozilla.org/about/legal.html

  • On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals.

    On Excel 2013 (64 bit), I can't use the Analysis ToolPack add-ins without a problem and plot the residuals. It went crash.

    Hi,
    In regarding of the issue, please provide us more information to assist you better.
    Do you mind telling us the Excel version number? Like 15.0.XXXX.1000
    Would you like to collect the Event Log and App Crash dump file to do further troubleshooting?
    As far as I know, if Excel crashes when using Analysis ToolPack add-ins, it usually causes by the >>Faulting module name: mso.dll<<, Please try the following method and check if it is helpful:
    1.Copy/paste the Mso.dll from another PC.
    2.Click "Start" and "Computer."
    3.Double-click "C: Drive," "Windows" and "System32." The System32 folder opens.
    4.Drag the Mso.dll file on your desktop into the System32 folder.
    5.Click "Start," type "cmd" into the search field and press "Enter" to open the Command Prompt.
    6.Type "regsvr32 mso.dll" (without the quotation marks) into the Command Prompt and press "Enter."
    7.Close the Command Prompt and restart your computer.
    Then, if the Faulting module name is not MSO.Dll, you also can upload(Or send to us via email
    [email protected])  the Event Log/App Crash dump file. We'd like to do further troubleshooting.
    Regards,
    George Zhao
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Can I use the same USB cable for both the iPhone and the iPad?

    Brnad new user of the iPad - can I use the same USB cable for both the iPhone and the iPad?  The iPad does not charge when plugged into the computer or the wall (110V) adapter.  I've been able to sync in iTunes using the same cable on both.

    Actually, the iPad charger works just fine with iPhones and iPods.  The iPod/iPhone charger will charge an iPad very slowly but no harm will be done.

  • Can u use more than one apple account on your device and itunes

    Can u use more than one apple account on your device and itunes

    Yes, but you have to logout of one, and login to the other.
    If it is an iPhone/iPad/iPod Touch and you buy apps on different accounts, when it comes time to update an app, you have to specify the password for the account used to acquirer the app. You change an iOS account via Settings -> Store -> Apple ID (tap on it), and start by logging out and then you can enter the other Id
    So it is possible, but it can also be a pain.

  • HT204053 can i use one apple id for apps store 2 devises and icloud every device own id

    Can i use one AppleID for apps store on 2 devises and for iCloud every device owne ID

    To clarify, we share an iPad (original iOS 5.1.1).
    When I use it, I would like to use my individual AppleID that I use for store purchases so I get MY iMessages on both my phone and the iPad.
    It seems to work when I use the iCloud Apple ID (meaning iMessages come through on both units) but when I try to set them both up using my store Apple ID, it doesn't work.
    Help?!?!

  • Can I use 2 apple ID's in my iPhone, iPad and PC ?

    Hello
    Can I use 2 apple ID's in my iPhone, iPad and PC ?
    I will explain better my situation I had my US Apple market for 5 years I had alot of apps, music and movies I bought.
    the issue is i might be reloacte to Canada and I would like keep my US account and open a Canadian account apple market but I read on internet you can not have 2 Apple ID's withouth a restricion of 90 days.....I don't undertand that part ......
    Please explain me how i can have 2 account in 2 direfent countries ??
    Because I need th US account for updates my apps or buy some US apps but also I would like buy native Canadian apps........
    I don't have iTunes match or automaitc donwload.
    Thanks in advance for your answer Thanks again  !!!

    Settings>Store...tap the ID shown...sign out...now sign back in with the ID you want to use.

  • Can i use my time capsule to wirelessly backup my macbook and its external hard drive, which up until now was it's time machine and storage? How?

    Can i use my time capsule to wirelessly backup my macbook and its external hard drive, which up until now was it's time machine and storage? How?

    The external drive must be connected to the Mac using either USB or FireWire
    You must remove the external hard drive from the list of items that are "excluded" from backups in Time Machine Preferences.
    Here's how:
    Open System Preferences (gear icon on the dock)
    Open Time Machine
    Click Options
    Look for the name of the hard drive in the list of "excluded" items and click on it to highlight it
    Click the -- (minus) button at the bottom of the list to remove the hard drive from the list of "excluded" items....so it will now be backed up
    Strongly recommend that you do the first backup using Ethenret from your computer to the Time Capsule since the entire contents of the external drive will be copied on the first pass. Ethernet will be 3-5 faster than wireless.
    Once you have the first backup done, you can use wireless for subsequent backups since they will nornally be much smaller....unless you add large files to the external drive.

  • TS3474 iTunes has detected an iPod that appears to be corrupted. You may need to restore this iPod before it can be used with iTunes. You may also try disconnecting and reconnecting the iPod.

    What do I do about this message? I've restored it 3 times, but this message still comes up, and i cannot put music on it now.
    iTunes has detected an iPod that appears to be corrupted. You may need to restore this iPod before it can be used with iTunes. You may also try disconnecting and reconnecting the iPod.

    Sounds like your iPod is broken. Take it to Apple or someone else who repairs iPods and see if you can get it fixed, or get it replaced.

Maybe you are looking for

  • Re: Cannot receive BT Mail emails in Outlook 2013

    I USE W 8.1 - YAHOO - OULOOK 2013. YAHOO IS CONTINUALLY RECEIVING DELAY AND NON DELIVERY MESSAGES FROM THE HOTMAIL POSTMASTER.  THEY REFER TO EMAILS THAT I HAVE SENT AND ARE NOT SPAM NOR HAVE THE ADDRESSEES RECEIVED THEM.  THESE DELAY AND NON DELIVER

  • Particle playground problem

    Hi all I have a problem with Particle Playground in AE 9.0.2.42. The particles shown on full screen resolution are different from the ones on other (half/quarter) resolutions. For example i use a boundary wall to constrain the (custom mapped) particl

  • Drag and drop notes from mail onto an ical date

    I've had some trouble dragging and dropping notes onto an ical date. It shows up as some lengthy message, probably its address on the hard drive, and when I open it, I can't make changes to it. Where can I make a suggestion to apple on how to improve

  • Error with stack in back command

    I'm creating a game and I need a goBack command to get to the previous rooms of my game. I used a stack to do that but i keep getting compiling errors. The code i've used is    private void stepBack(Command command)         if(stack.isEmpty()) {     

  • Error database travel doesn't exist

    Hi I currently do the tutorial about databinding but I could not retrieve pointbase travel db. Connection failed. I 've start pointbase. Before choose pointbase Studio Creator have try to connect to sqlserver. Any idea ? Thanks in advance.