Compatibility wtih 3DES

I want to encrypt wtih 3DES in java and decryt in C. The same in the other way. The problem is that when I encrypt the same word with the same key in both languages, I get a different cipher test.
Can anybody help me?
I use this code to encrypt in JAVA:
public class Encriptador {
     //Generamos la clave
/*     private static final byte[] _3desData = {
         (byte)0x76, (byte)0x6F, (byte)0xBA, (byte)0x39, (byte)0x31, (byte)0x2F,
         (byte)0x0D, (byte)0x4A, (byte)0xA3, (byte)0x90, (byte)0x55, (byte)0xFE,
         (byte)0x55, (byte)0x65, (byte)0x61, (byte)0x13, (byte)0x34, (byte)0x82,
         (byte)0x12, (byte)0x17, (byte)0xAC, (byte)0x77, (byte)0x39, (byte)0x19 };*/
     static String clave ="012345678901234567890123";
     private static final byte[] _3desData = clave.getBytes();//{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
     private static SecretKeySpec _key = new SecretKeySpec(_3desData, "DESede");
//  private static SecretKeySpec _key = Generador.clave();
     //Tenemos funciones de encriptar y desencriptar con cadenas y bytes
  public static String encrypt(String text){
    byte[] plaintext = text.getBytes();
    try{
      // Cogemos el objeto 3DES Cipher
      Cipher cipher = Cipher.getInstance("DESede");  // Triple-DES encryption
      // Modo encriptar
      cipher.init(Cipher.ENCRYPT_MODE, _key);
      // Encriptamos, pero pasamos a ASCII primero
      byte[] cipherText = cipher.doFinal(plaintext);
      BASE64Encoder b64 = new BASE64Encoder();
      return b64.encode(cipherText);
    }catch (Exception e){
      throw new java.lang.RuntimeException(e);
  public static String decrypt(String text){
    try{
      BASE64Decoder b64 = new BASE64Decoder();
      byte[] cipherText = b64.decodeBuffer(text);
      // Cogemos el objeto 3DES Cipher
      Cipher cipher = Cipher.getInstance("DESede");  // Triple-DES encryption
      // Modo desencriptar
      cipher.init(Cipher.DECRYPT_MODE, _key);
      // Desencriptamos
      String plainText = new String(cipher.doFinal(cipherText));
      return plainText;
    }catch (Exception e){
      throw new java.lang.RuntimeException(e);
    }

Excuse me, I�m using as plaintext 0000111122220000.
Yes, I�m now that use this keys make it a DES encrypt, but it only is to simplify yhe test.
This is the C code. I can�t change it because it works in other aplications.
void algorithms_DES (char tipo,UCHAR *d,UCHAR *c)
     int i,j;
     UCHAR k,val_car,d_i1[65],d_i2[65];
     UCHAR Edato[65],Eclave[65],Fresu[33],DatoR[33],Iclave[49];
     UCHAR permut_ini[65] = { 64,58,50,42,34,26,18,10, 2,60,52,44,36,28,20,12, 4,
                     62,54,46,38,30,22,14, 6,64,56,48,40,32,24,16, 8,57,
                      49,41,33,25,17, 9, 1,59,51,43,35,27,19,11, 3,61,53,
                     45,37,29,21,13, 5,63,55,47,39,31,23,15, 7
     UCHAR permut_fin[65] = { 64,40, 8,48,16,56,24,64,32,39, 7,47,15,55,23,63,31,
                     38, 6,46,14,54,22,62,30,37, 5,45,13,53,21,61,29,36,
                       4,44,12,52,20,60,28,35, 3,43,11,51,19,59,27,34, 2,
                       42,10,50,18,58,26,33, 1,41, 9,49,17,57,25
     ST(Edato,0,sizeof(Edato));
     ST(Eclave,0,sizeof(Eclave));
     ST(d_i1,0,sizeof(d_i1));
     ST(d_i2,0,sizeof(d_i2));
     ST(Fresu,0,sizeof(Fresu));
     ST(Iclave,0,sizeof(Iclave));
     ST(DatoR,0,sizeof(DatoR));
     Edato[0]=sizeof(Edato)-1;
     Eclave[0]=sizeof(Eclave)-1;
     d_i1[0]=sizeof(d_i1)-1;
     d_i2[0]=sizeof(d_i2)-1;
     Fresu[0]=sizeof(Fresu)-1;
     Iclave[0]=sizeof(Iclave)-1;
     DatoR[0]=sizeof(DatoR)-1;
     for (i=0,j=1 ; i<8 ; i++) 
          val_car=d;
          for (k=0x80 ; k>0 ; k/=2)
               if ((k & val_car)!=0) Edato[j]=1;
               j++;
     for (i=0,j=1 ; i<8 ; i++)
          val_car=c[i];
          for (k=0x80 ; k>0 ; k/=2)
               if ((k & val_car)!=0) Eclave[j]=1;
               j++;
     for (i=1 ; i<=permut_ini[0] ; i++) d_i1[i]=Edato[permut_ini[i]];
     for (i=1;i<=16;i++)
          ST(&d_i2[1],0,d_i2[0]);
          if (tipo==DEST_CIFR) algorithms_calc_Ki((UCHAR)i,Eclave,Iclave);
          else
          if (tipo==DEST_DESC) algorithms_calc_Ki((UCHAR)(17-i),Eclave,Iclave);
          else return;
          CP(&DatoR[1],&d_i1[33],DatoR[0]);
          algorithms_calc_F(Fresu,DatoR,Iclave);
          CP(&d_i2[1],&d_i1[33],32);
          for (j=1 ; j<=d_i2[0]/2 ; j++) d_i2[j+32]=(d_i1[j] ^ Fresu[j]);
          CP(&d_i1[1],&d_i2[1],d_i2[0]);
     CP(&d_i2[1], &d_i1[33],32);
     CP(&d_i2[33],&d_i1[1], 32);
     for (i=1 ; i<=permut_fin[0] ; i++) Edato[i]=d_i2[permut_fin[i]];
     ST(d,0,8);
     for (i=1 ; i<=Edato[0] ; i+=8)
          d[(i-1)/8] = (UCHAR)(Edato[i  ]*0x80)+(UCHAR)(Edato[i+1]*0x40)+
               (UCHAR)(Edato[i+2]*0x20)+(UCHAR)(Edato[i+3]*0x10)+
               (UCHAR)(Edato[i+4]*0x08)+(UCHAR)(Edato[i+5]*0x04)+
               (UCHAR)(Edato[i+6]*0x02)+(UCHAR)(Edato[i+7]*0x01);

Similar Messages

  • Is DVD 9 format compatible with MacBook Pro?

    I want to purchase a DVD off of Amazon, but the product description says it's a long-format "DVD 9" which is intended for TV-top DVD player, and it is not compatable wtih all computers' DVD players. Will the DVD 9 format work on my MacBook Pro's DVD player?

    "DVD-9, holds around 8 540 000 000 bytes and that is 7.95 computer GB. DVD+R supports this format. Also called Single Sided Dual Layered. This media is called DVD-R9, DVD-R DL, DVD+R9, DVD+R DL or 8.5 GB Media."
    Source: http://www.videohelp.com/dvd/
    Dual Layer discs have been supported since at least 2005.  However, if the disc is a home brew disc, it may not be as possible to read it, if it was burnt at a higher speed than your player can read.  Commercial discs tend to be more readable.

  • Are There Compatability Problems Wtih Adobe Photoshop CS2 On The Windows Portion of iMac?

    I understand that there are compatability problems with CS2 and lower vesions of the creative suite in relation to Leoapard OSX. Are there any compatability problems with CS2 for Windows if I install it on the Windows (using XP) partition of an iMac that uses the Leopard OSX?
    Please advise. Thanks.

    If its not running in Leopard you should be fine.
    don't confuse running PowerPC software in Rosetta (PPC emulation) with running CS2 in XP which is native. It like apples and oranges. there is nothing in common.

  • Sun Compiler Compatibility with g++

    I am new to C++ so I believe this is a basic question.
    I was given the job of compiling a C++ program to be compatible with Sun compiler 5.5 Patch 113817-19 2006/10/13 on Solaris 9 Sparc. Since I did not have the Sun One Studio 8 I compiled the program using G++ 3.4.6. Question: will this program compiled with g++ 3.4.6 satisfy the requirements.
    Any help would be appreciated.
    --Acevez                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    You have to ask those imposing the requirement what they actually care about.
    If you need binary compatibility, the answer is "No." Object code produced from C++ source code by any version of Sun C++ cannot be linked with object code produced from C++ source code by any version of g++.
    If the requirement is that the source code be successfully compiled by Sun ONE Studio 8 (C++ 5.5), the answer is "maybe." Limitations include the following:
    1. Every compiler has bugs. Code might trigger a bug in one compiler but not in a different compiler.
    2. g++ has extensions not supported by Sun C++ 5.5. Source code that uses an unsupported extension probably won't work the same (and probably won't compile) with Sun C++ 5.5. If you write code for use with g++, you might not know when you are using a g++ extension.
    3. The default version of the C++ Standard Library used by Sun C++ is libCstd, which does not fully conform to the C++ standard. Sun C++ also provides the STLport library as an option. Standard-conforming source code that works with g++ and its libstdc++ might not work with Sun C++ libCstd, but will probably work wtih STLport. If you are not allowed to use STLport with Sun C++ and write code for g++, you might write code that depends on features not supported by libCstd.
    In summary, you are asking questions about portability. The short answer is that
    A. C++ object code is in general not portable among C++ compilers, and
    B. You don't know whether source code is portable until you port it.
    That said, most programmers find most of the time that well-written code that has portability in mind works fine with Sun C++.
    Finally, Sun Studio 8 is obsolete. It would be better to use the current release, Sun Studio 11, which is free. You can get it here:
    http://developers.sun.com/sunstudio
    Sun Studio 11 is source and binary compatible with Sun Studio 8, in the following sense:
    Valid source code that works with Sun Studio 8 will also work with Sun Studio 11.
    Object code produced by Sun Studio 8 can be linked into programs built by Sun Studio 11.
    Good luck!

  • Kt6-delta sempron compatability

    i've gotten the latest bios upgrade 5.7 but it doesn't show compatability for 3100+ i wanna get that but i duno if itd work.  I heard that if u plug a sempron in anyway it shows up as its xp equivalent wtih higher fsb and multiplier settings but i'm not sure if i wanna risk it and i duno why an athalon XP 3200+ costs so much i wonder if i'm better off with the 3200+ or the sempron 3100+
    someone help:S:S:S

    If your ram is PC-3200 or higher go with the XP3200+ its 400 FSB and 512Kb on-die cache. I upgraded from a 2600+ 256Kb and what a difference. The sempron however does not have a large on-die cache. Thats why they are cheaper. They are good for everyday computing but not hard gaming and coding and such.
    In Edmonton Canada I bought the XP 3200+ for $269.99 CDN.

  • I have formatted my SSD and hard drive.... I am running a clean install from disk of 8.1 pro. I cannot determine if it is a compatibility

    issue or hardware issue. I had run a memory test and scan disk for bad sectors from the bios. As administrator, I enabled automount  in diskpart to allow windows to assign a drive name. 
    From the bios, I can see both drives and only the ssd. I have not pinpointed when the harddisk is unmounted. It is formatted as NTFS. I can hear it unmount either during boot or upon waking from sleep mode. The bios sees no bad sectors nor does windows.
    However, when I had the intel compatibility software installed, my hard drive never mounted. I did a restart and inorder for windows to see my hard drive. I disabled the intel software for the 4th gen i7 processor. This problem is happening less often. I do
    not think I have solved the problem. Intel or Windows... I think a bit of both. 
    If there is a software patch, please guide me to it. I am in school and use my laptop ALL the time. I believe it is a compatibility issue. I have attached this from searching intel's site for downloads and windows is up to date. 
    I am quite concerned because I can hear my harddrive unmount. It is labeled as healthy NTFS partition. I have checked for hidden volumes and done everything I know to do to check the integrity of the hardware as administrator. I have searched microsofts
    libraries and forums and have done everything I can find as suggestions. 
    I have checked for malware, viruses, etc. My only clue this is going to happen is the hard disk spins up and I hear the fan, then I hear it unmount the drive. Of course, after unmounted there are other issues which I have ruled out as the cause of the problem.
    Basically, I am experiencing a lack of swap space after my hard drive unmounts.
    Any suggestions, are welcome! I would really like to know if this is a known windows issue. I should not have to disable intel's processor software. I paid for the features of the i7 and would like to utilise the processor.

    Hi,
    According to your descriptioin, I don't think this is system problem, it should be Intel driver problem. It would be contact Intel to confirm this issue whether this is their driver problem.
    Roger Lu
    TechNet Community Support

  • Itunes wont open - compatibility error...

    hi,
    today I had a problem with moving songs from itunes to ipod. have had this issue in the past which was fixed by using ipod updater.
    this didnt seem to work so for first time in ages ran the itunes updater. I can no longer open itunes and get the following error.
    Quicktime unavailable
    itunes requires Windows 2000 or later
    Please make sure compatibility mode is disbaled in the compatibility tab of the properties of itunes.exe
    well....I tried to do this (I am not massively IT literate!), have tried selecting or deselecting compatibility on this tab....and still wont open....any ideas?
    im on windows XP professional.
    cheers in advance
    mike

    hiya!
    if I find the mp3 file on my hardrive and move it to ipod manually it still doesnt appear when I disconnect.
    that's normal. for the ipod to recognise a song it needs to be transferred to the ipod via itunes rather than dragged and dropped with Windows Explorer. see the note at the end of this article:
    iPod: Operating System or iTunes Reports the Disk is Full, But It Does Not Look Full
    ... try resetting the warnings on your ipod and trying another manual sync:
    Resetting iPod warnings
    do you get an error message show up after resetting warnings?
    love, b

  • Is there a Data Execution Prevention compatable version of iTunes?  I have reinstalled iTunes 10.5 at least 10 times, and after it installs, it will not open because of DEP.

    I have tried all the advice I have seen on Apple Support discussion boards for the past 2 days, and nothing works.  Disabling DEP is not possible, regardless of what the Windows Support discussions tell you.  In the meantime, I have absolutely no access to iTunes, or even the ability to update my iPhone or iPod.  The only feasable solution is the possibility of a version of iTunes that is compatable with Data Execution Prevention settings. 
    In the past 2 days, I have:  Removed iTunes and related components from the Control Panel (numerous times)  Per the instructions on Apple Service discussions pages, I did it in this order.  1. iTunes  2. QuickTime  3. Apple Software Update  4. Apple Mobile Device Support 5. Bonjour ^. Apple Application Support.  After all that, I reinstalled iTunes. 
    Everything looks fine during installation, with no error messages.  At the end, it says everything was successfully installed.  However, when the installation tool closes, iTunes will only partially open a window, but will stay blank.  Then I get the message that iTunes has stopped working and that Windows has shut it down.  Then I get notified that DEP has caused iTunes to shut down. 
    Can someone please help?  Or, is there a DEP compatible version of iTunes? 
    I would appreciate any help.  Thanks!!

    Polydorus,
    Thank you for your kind reply.  During the many times I uninstalled iTunes, and all the other Apple programs, I only used the Uninstall Programs in Windows Control Panel.  To make a long story short, I found a solution that works for me, but it is still not a complete soluton.
    Here is what I did:
    I used Uninstall Program in the Windows Control Panel to uninstall everything IN THIS ORDER
    1. iTunes
    2. QuickTime
    3. Apple Software Update
    4. Apple Mobile Device Support
    5. Bonjour
    6. Apple Application Support
    Then I went to C:\Program Files and looked for any iTunes or Apple program listed there and deleted it.
    I have 64-bit, so I then went to C:\Program files (x86) and looked for any iTunes, QuickTime, Bonjour or any other file or folder that had Apple or any Apple program in the name and deleted it.
    I went to C:\Windows|SysWOW64\Quicktime  and C:\Windows\SysWOW64\QuicktimeVR and deleted them
    Go back to START, and open the "C" drive.  Open the USERS folder.  Open the folder with your username.  Open the AppData folder.  Then double-click on the LOCAL folder to open it.  If you see any files or folders there that show any Apple program or file, delete those files or folders.  Then go to the REMOTE folder and do the same.  If there are any other users on this computer, go to each individual user and do the same thing in each LOCAL and REMOTE folder.  Restart your computer.
    Go to http://www.apple.com/itunes/download/ This is the page where you will actually download iTunes.  Scroll down the page to the section under "Windows Software"  that says "64-bit editions of Windows Vista or Windows 7 require the iTunes 64-bit installer".  Click on that line to get the installer.  It will take you to another download window.
    Scroll to the bottom of the page to the message that says "Download for iTunes 10.4.1 for Windows (64-bit) here: iTunes for Windows 64-bit."  Click there to get the download.
    This is not iTunes 10.5, so you will not have access to "The Cloud", but it is at least functional until Apple actually comes out with a version that will not activate the DEP message.  There was no combination of uninstalling and reinstalling, with or without Quicktime, with 10.5 that did not cause problems with Data Execution Prevention problems that I found.
    I also used Firefox for the downloading instead of Internet Explorer.  It just seemed to function better that way.
    I hope this is helpful to someone.  It's just what worked for me.   

  • How to set Compatibility Mode for a single site in ie10

    This question was originally posted on the Answers forum -
    http://answers.microsoft.com/en-us/ie/forum/ie10-windows_7/how-to-set-compatibility-mode-for-a-single-site-in/187152e3-142a-4d96-8d1b-af82ef571eec
    I am having problem with getting ie10 to set ie9 compatibility for a single site (sharepoint.contoso.com).
    When I add this website in Compatibility View Settings (Alt > Tools > Compatibility View Settings > 'Add this Website') it adds the domain 'contoso.com' and not the individual website (sharepoint.contoso.com).
    This cause other sites (www.contoso.com) to be configured to use compatibility mode. Because this is a separate site (different web server) to the site sharepoint.contoso.com (sharepoint 2010 server) we need different compatibility settings.
    Using a different example to explain the issue -
    Microsoft has three websites that are different websites created by different developers written in different programming languages and they only work with certain browsers.
    microsoft.com (Website1 created by Developer1) - compatible with ie8/ie9/ie10
    msdn.microsoft.com (Website2 created by Developer2) - compatible with ie8/ie9
    technet.microsoft.com (Website3 website created by Developer3) - compatible only with ie10
    The only thing the three website share is the URL contains 'microsoft.com'.
    Marking 'msdn.microsoft.com' to run in compatibility mode affects the other 2 websites - mainly technet.microsoft.com which will not work now since it only runs in pure ie10 mode. 
    Should you be able to add an individual site to the compatibility list instead of all sites that have  .microsoft.com in the URL? Am I missing a simple setting in the ie10?
    As a workaround I am using the F12 Developer Tools to set the Browser Mode which temporary sets the compatibility mode. However this is not a nice solution to the end users at our organisation. 

    problem is not solved for non corporate environments...
    You could start your own thread.  Then if you got that answer and it was marked Answered you would have the ability to unmark it.  The OP of this one seems satisfied.  Also note that this is TechNet.  Consumers can get help on Answers
    forums.
    Robert Aldwinckle
    Oh! I wrote it wrong: I should have said: This is not solved for NON-AD environments. No demands what so ever to use Window 7/8 professional in a small corporation or on a big corporation with Island of smaller departments for example offshore.
    The problem is that the thread is not "Answered" by the OP, its is marked answered by a moderator (and same moderator that did the answer) so no way of telling if the OP is satisfied.
    But you are right in the fact that I am almost kidnapping the thread. But a complete answer would benefit all in this case I would presume.
    Regards
    /Aldus

  • How can I turn on the Compatibility View Option?

    In viewing a vendor's online reporting, I noticed that the report's header appears on the right, while the report's content appear on the left, creating a confusing viewing.
    The vendor has recommended that I turn on the Compatibility View Option, but I cannot find this option anywhere.
    Would someone direct me to the section where I can turn on the Compatibility View Option?
    Thank you!

    You can try these steps in case of issues with web pages:
    You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
    *Hold down the Shift key and left-click the Reload button
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Command + Shift + R" (Mac)
    Clear the cache and cookies only from websites that cause problems.
    "Clear the Cache":
    *Firefox/Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Firefox/Tools > Options > Privacy > "Use custom settings for history" > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • I am trying to find "compatibility view settings" in order to add a website that I need to use for work. PLEASE HELP!

    I received a "how to" sheet of how to be able to view this website but it wants me to download Internet Explorer (excuse me while i say yuck!)...
    So the directions state: Under "Tools" click on "compatibility view settings". Where is says "add this website" write in the website and then click add and close. Log off and reboot.
    I live on Mozilla on all my devices. I recommend it to anyone who has not been introduced yet. I cringe to think of being forced to use internet explorer!!!
    Thank you for all you do!!!

    hello ETRU, "compatibility view" is a concept of internet explorer that other browsers do not have. do you have any particular problem viewing it with firefox?

  • Iphone and windows 8 compatibility?

    When is apple going to fix the iphone and windows 8 compatibility? All I get is the "waiting for changes to be applied" message. I can't sync my phone.

    I have  no issues with Win 8 working fine with the latest (win 8 compatible )
    iTunes

  • Itunes and windows 8 compatability Hi just bought a new toshiba laptop installed itunes it worked at first now wont play music or movies.  ran troubleshooter said its a compatabilty problem suggested turning off itunes compatability or selecting windows 7

    itunes and windows 8 compatability
    Hi
    just bought a new toshiba laptop installed itunes it worked at first now wont play music or movies.
    ran troubleshooter said its a compatabilty problem suggested turning off itunes compatability or selecting windows service pack 3 tried both no help
    please assist
    adam

    itunes and windows 8 compatability
    Hi
    just bought a new toshiba laptop installed itunes it worked at first now wont play music or movies.
    ran troubleshooter said its a compatabilty problem suggested turning off itunes compatability or selecting windows service pack 3 tried both no help
    please assist
    adam

  • I have PhotoDhop Elements 4.0, which I have been running on an XP computer. I bought a Windows 8.1 computer, and tried to reinstall it on the new machine. It would not install, due to "compatibility" problems. Is there a fix that will let me install this

    I am trying to determine whether there is a way to install my PhotoShop Elements 4.0 on a Windows 8.1 computer.

    If there is it probably requires doing so in compatibility mode.  Try searching Google to see if anyone has looked into this for Windows 8 or even an earlier version since it likely a question for earlier Windows versions as well.

  • CVP 7.0.2 compatibility with ICM 8.5 or 9.0

    Is there any official documentation on the compatibility of CVP 7.0.2 with newer versions of ICM?
    I am interested in knowing, if anyone ever successfully connected a CVP 7.0.2 Call server with ICM PG 8.5 or 9.0.

    This is definitely not supported. I believe there will be issues with the communication between PIM and CVP.
    Take a look at the below pages.
    http://docwiki.cisco.com/wiki/Unified_CCE_Software_Compatibility_Matrix_for_8.5(x)
    http://docwiki.cisco.com/wiki/Unified_CCE_Software_Compatibility_Matrix_for_9.0(x)
    However ICM 7.5.10 does support CVP 8.x  very well.
    -Sunil

Maybe you are looking for

  • I need to do a clean install of leopard:

    Please tell me a way to backup so my settings and data remain the same thanks!

  • Ask your question.how to unblock java plug in

    I just installed the latest version of java and now I can't play my games. It says java plug in is blocked. How do I unblock it??

  • Calling BAPI's from java

    Hi ,   Is there any way can we call BAPI's in java.   If yes, could you pls tell me the required jar files for that or any useful sites.  Thanks in Advance JM

  • My N79 can't display arabic character

    hi guys, can you all help me how to make Arabic character/fonts can be display on my N79 instead of boxes character. I already update the firmware to 30.019.53.1 but still cannot display Arabic fonts. What should I do? Am I missing something? can you

  • Playlist not transferring properly to iPod

    Can anyone tell me why my playlists from my computer are not updating on my iPod? Specifically, I have a playlist "Christmas". There are two songs on my computer list that are not showing up in the same list on my iPod. I have tried syncing numberous