DES working with bits

I hawe working DES code that works with Strings. But I need it to work with bits (key, plaintext and encrypted text in bit format). Witch is the best way to do it if it is possible. Or maybe do it in other language.
import java.io.UnsupportedEncodingException;
import javax.crypto.*;
public class DESEncrypter {
    Cipher ecipher;
    Cipher dcipher;
    DESEncrypter(SecretKey key) {
        try {
            ecipher = Cipher.getInstance("DES");
            dcipher = Cipher.getInstance("DES");
            ecipher.init(Cipher.ENCRYPT_MODE, key);
            dcipher.init(Cipher.DECRYPT_MODE, key);
        } catch (javax.crypto.NoSuchPaddingException e) {
        } catch (java.security.NoSuchAlgorithmException e) {
        } catch (java.security.InvalidKeyException e) {
    public String encrypt(String str) {
        try {
            // Encode the string into bytes using utf-8
            byte[] utf8 = str.getBytes("UTF8");
            // Encrypt
            byte[] enc = ecipher.doFinal(utf8);
            // Encode bytes to base64 to get a string
            return new sun.misc.BASE64Encoder().encode(enc);
        } catch (javax.crypto.BadPaddingException e) {
        } catch (IllegalBlockSizeException e) {
        } catch (UnsupportedEncodingException e) {
        } catch (java.io.IOException e) {
        return null;
    public String decrypt(String str) {
        try {
            // Decode base64 to get bytes
            byte[] dec = new sun.misc.BASE64Decoder().decodeBuffer(str);
            // Decrypt
            byte[] utf8 = dcipher.doFinal(dec);
            // Decode using utf-8
            return new String(utf8, "UTF8");
        } catch (javax.crypto.BadPaddingException e) {
        } catch (IllegalBlockSizeException e) {
        } catch (UnsupportedEncodingException e) {
        } catch (java.io.IOException e) {
        return null;
Thanks

Exceptions are fixed. Code looks much better.
Now I'm looking for some fast algorithm that could run throu all bit combinations from 0 to 2 ^64^ -1 and to write them in byte[8]. In beginig with 1 +"1"+ from all 64 bits, then 2 +"1"+, 3 +"1"+ and so on to 64 +"1"+.
My previous code:
public void runAll() throws IllegalBlockSizeException, BadPaddingException, SQLException, ClassNotFoundException{
        byte[] pt = new byte[8];
        byte[] et = new byte[8];
        int ptbc, etbc;
        SQLoutput sqlout = new SQLoutput();
        sqlout.createTables();
        for(int n00=-128;n00<128;n00++){
            pt[0] = (byte)n00;
            for(int n01=-128;n01<128;n01++){
                pt[1] = (byte)n01;
                for(int n02=-128;n02<128;n02++){
                    pt[2] = (byte)n02;
                    for(int n03=-128;n03<128;n03++){
                        pt[3] = (byte)n03;
                        for(int n04=-128;n04<128;n04++){
                            pt[4] = (byte)n04;
                            for(int n05=-128;n05<128;n05++){
                                pt[5] = (byte)n05;
                                for(int n06=-128;n06<128;n06++){
                                    pt[6] = (byte)n06;
                                    for(int n07=-128;n07<128;n07++){
                                        pt[7] = (byte)n07;
                                        et = encrypt(pt);
                                        ptbc = byteCount(pt);
                                        etbc = byteCount(et);
                                        sqlout.updtRec(etbc, ptbc);
    }Edited by: Hugo.Knife on Dec 11, 2007 5:39 PM

Similar Messages

  • Help!Working with bits

    Hi all!
    First of all sorry, because my email is too long :(
    I'm trying to make read/write operations with bits buy I'm going mad. That's my problem:
    I have a file called "doubles.bin" which stores numbers in double format and I need to read every data in that file, take a number of bits specified by the user and create a file with those new data,that is:
    doubles.bin : ...
    _1000001000001011100000_111110000000000000000000000000000000000000
    num_bits_to_read = 22
    new.bin: ...
    1000001000001011100000
    I've tried with different libraries:
    BitSet ,
    [java.lang.Object-> BitInputStream|http://www.iu.hio.no/~ulfu/appolonius/e-bok/vedleggA/BitInputStream.html],
    [org.kc7bfi.jflac.io.BitOutputStream|http://jflac.sourceforge.net/apidocs/org/kc7bfi/jflac/io/BitOutputStream.html#writeRawULong(long,%20int)]
    and the last one seems to be the most useful but I'm not sure how exactly wotks the method "writeRawULong"
    so, the questions are:
    1. What do you think is the most efficient library or way to solve this?
    2. Does anybody know what exactly does the method "writeRawULong(long val, int bits)" of the last library?
    Any help would be apreciated!

    platters wrote:
    jverd wrote:
    Is this a text file, with the ASCII character 11010011 etc.? Or is it a binary file?
    What format is it in? Not "text" or "binary". Rather, in addition to it being text or binary, which specific textual or binary format was used to encode the values? How did the file get written in the first place?"doubles.bin" has been created using the writeDouble method in class DataOutputStream, so values are stored according to the IEEE 754 floating-point "double format" bit layout.So just read it with readDouble() then.
    >
    >>
    What specific problems are you having? "Not perfect" contains no useful information.Ok, I'm gonna try to explain well the problem.
    I want to read from that "doubles.bin" each data in long format Why long format? Why not double format, since that's what you wrote it with. But if you want long format, use readLong. Every valid double is also a valid long, BUT the values will be very different. 1.0 in double will NOT be 1 in long, and 123.456 will not just be rounded to 123. They're totally different formats.
    and create a new file which stores n-bits of each data read in order to create a smaller file.Huh???
    The problem is that I have to create an image with the modified data and I've noticed that when the number of bits I read from each original data is multiple of 8 the image is ok but in the other case there is noise. Well, you can't just trim out arbitrary bits and expect it still to be meaningful. Have you studied up in [IEEE-754|http://en.wikipedia.org/wiki/IEEE_754]? Which bits will you strip out, and what will you replace them with when you reconstruct your double or long or whatever you're ultimately after.
    I must admit, I have no clue what you're actually trying to accomplish.

  • Working with bits

    i need a program to send packets on a multicast capable network. the payload of the packet is not a problem, but for the header i need to be able to change the bits. for example the payload might be v=0\ns=testing\ni=test, but the header could start with 00100000 00000100...... its SDP data with a SAP header if that means anything to anyone.
    how do i create a packet with this data? i think for the payload i can use getBytes but i dont have a clue what to do with the header.
    i'm new to this and getting totally lost

    My impression is that SAP is built atop UDP. Can you not use the java UDP support as a starting point?

  • Acrobat XI email attachment does not appear to work with Outlook 2013 64 bit

    When attempting to send email from Acrobat, the following Microsoft Office Outlook 2013 64 bit error message is received: 
    "Either there is no default mail client or the current mail client cannot fulfill the messaging request.  Please run Microsoft Outlook and set it as the default email client."
    Naturally, Outlook was set as default client and then reset for good measure.  I did both Outlook and Acrobat repairs and have the latest 11.0.2 installed.  All other internal Office 2013 email applications work as well as seemingly all other embedded Acrobat funcitions with Office 2013 work well.  Office 2010 64 bit and Acrobat X worked fine.  I upgraded to Office 2013 64 bit and had the problem with Acrobat X.  I then upgraded to Acrobat XI and the issue remained.
    Most importantly, I intalled Office 2013 64 bit on my laptop with Acrobat X.  An the email attachment function works perfectly. 
    So, is there some sort of corrupt MAPI file that I have to overwrite on my desktop that the Ofice and Acrobat repair functions do not fix?
    Thanks,
    Joe

    I am sorry.  In my haste, not only did I attach the link the wrong way, but I also did not specify which solution worked.  My problem was a Click to Run issue.  The portion of the thread that deals with the problem is:
    "HurdleRemove replied on May 16, 2013
    I created a solution for this problem for 64 bit Windows 8 where Outlook 2013 was installed as Click-To-Run.......
    ......A  registry edit will fix the problem with Outlook 2013 click to run  installations and enable Outlook to be set as the default mail client.  This registry edit will for many third party programs eliminate the error "Either  there is no default mail client or the current mail client cannot  fulfill the messaging request. Please run Microsoft Outlook and set it  as the default mail client." It  worked to resolve the problem where Adobe Acrobat was generating this  error.
    The registry edit is here for Office  2013 64 bit click to run installations that will enable Outlook 2013 to  be recognized by third party applications:
    1. Create registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Outlook
    2. Create String value:
    Bitness
    3. Set the String value for Bitness to:
    x64
    This registry edit is an essential element  necessary to resolve the click to run problem that prevents Outlook 2013  from being set as the default mail client. Although it worked with  Adobe Acrobat, it will not completely resolve the  problem for some third party applications like Kerio Outlook Connecter  where the software developer has a web site that includes extra steps  necessary for a full resolution for the Kerio product. The Kerio web  site includes this registry edit in the context  of resolving the Office 365 problem. However, the registry edit works  with Office 2013 desktop as well. A similar register edit could likely  be made for 32 bit versions but the registry path would not include Wow6432Node. I do not have a 32 bit machine and cannot test a 32 bit solution."

  • Itunes 64 bit not working with my iphone 3

    First of all my itunes decided to stop working stating that itunes helper not available and to re-install. Which i did. For the latest version.
    Now my iphone 3 cannot work  with itunes. It says that i need to download 64bit version for windows 7 64bit. ---- I have downloaded the 64 bit version and installed it twice now. still not working.
    I then tried to go back to an older version but i get another error saying that ituneslibrary.itl cannot be read as was created with newer version of itunes.
    I'm not too bad with computers but this is my first iphone so any help would be greatly appreciated.
    Thanks.
    Lee

    Now my iphone 3 cannot work  with itunes. It says that i need to download 64bit version for windows 7 64bit.
    Let's try a standalone Apple Mobile Device Support install. It still might not install, but fingers crossed any error messages will give us a better idea of the underlying cause of why it's not installing under normal conditions.
    Download and save a copy of the iTunesSetup.exe (or iTunes64setup.exe) installer file to your hard drive:
    http://www.apple.com/itunes/download/
    Download and install the free trial version of WinRAR:
    http://www.rarlab.com/
    Right-click the iTunesSetup.exe (or iTunes64setup.exe), and select "Extract to iTunesSetup" (or "Extract to iTunes64Setup"). WinRAR will expand the contents of the file into a folder called "iTunesSetup" (or "iTunes64Setup").
    Go into the folder and doubleclick the AppleMobileDeviceSupport.msi (or AppleMobileDeviceSupport64.msi) to do a standalone AMDS install.
    (If it offers you the choice to remove or repair, choose "Remove", and if the uninstall goes through successfully, see if you can reinstall by doubleclicking the AppleMobileDeviceSupport.msi again.)
    Does it install (or uninstall and then reinstall) properly for you? If so, can you get a normal iTunes install to go through properly now?
    If instead you get an error message during the install (or uninstall), let us know what it says. (Precise text, please.)

  • Internet Security Suite does not work with Vista 64 bit

    After attempting to use the Chat Help, twice, and spending hours in queue before getting kicked off, I finally called Support to find out why my new Vista computer was not running the Internet Security Suite that I downloaded.  Yes, I found the link to "download to a second computer" and went thru all the steps.  Got lots of positive feedback: little bars were filling in letting me know I was 40%, 72%, 100% done, etc..  Was given a window allowing me to Run or Don't Run the software.  It all seemed to go very well.  However, when the "download and installation" was complete, there was no new software running anywhere on my computer.  Couldn't find it in the Control Panel, the Start menu, or the system tray.  Called Support and spent at least 30 minutes on the phone with a "technician" (and I use that term VERY loosely) who had to have major assistance from a co-worker before he could even start screen-sharing with me and, during the course of our time together, made the following brilliant remarks:
    Upon seeing my desktop wallpaper (which is a lovely photo of some cliffs and a lake - and it came with Vista), he wanted to know what the picture was.  Not where it was taken, but just what it was.  His exact comment was "Does your screen always look like that?".  I had to dig deeper to determine if he was asking about a particular icon or some other computer related concern that he saw (he was "technical support", after all), but he was just asking about the stupid photo.
    He couldn't find the Control Panel in the Start Menu until after trying several times, and then he couldn't navigate to the Programs area very well (I had to give verbal hints as to where it was), and his brilliant comment then was "I really need to go to my mom's house and get on her new laptop and try out Vista."  Can you believe that Verizon has technical support folks who have never used Vista?  It's not like Vista just came on the market yesterday!!
    So, when he finally decided that he was not going to be able to help me, he didn't offer me any other recourse.  He just stated over and over that he was not sure how to solve this issue.  Oh, and this was after I re-downloaded ISS (again, "successfully").  I had to ask if there was someone else there who could possibly help me.  He offered to put me on hold (for the 2nd or 3rd time at this point) to check around.  When he returned to the phone, it was obvious that someone else was operating the mouse in the screen sharing mode because the operator moved confidentially around the screen and went immediately to system properties and saw that I am running Windows 64 bit.  The other operator then told my guy to tell me that ISS only works with Windows 32 bit.  Their final resolution was that I should call billing on Monday and end my subscription.  I think that may be the only good advice I was given that day.
    So, am probably going to renew my trial version of Norton on this new computer and remove ISS from the laptop and put Norton on there as well.  Apparently, they are up to date with this fancy new technology.  At least they probably know about sophisticated and highly technical stuff like desktop wallpaper.

    I have been trying to get somewhere with this Internet Security Suite...and now have come to the conclusion this is not going to work.  Now running Vista 64 bit, and have gotten nothing but the run around to try to complete the downloading of the program.  I've contacted Verizon Tech Support...then tell me that this works with the 64 bit but I need to contact Windows as there is a glitch and they give you the steps to get thru it.  Windows advises me to contact Verizon again as there are no problems with the OS.  Also have contacted Radialpoint and once again nothing...Obviously the Secuirty is not compatible with Vista 64 bit yet, which I just can't believe like you said...it's not like it was just yesterday this OS came out.  My frusteration comes from nobody steps up to take any responsibility as to what the problem is.  If it is not compatible yet then say so and not waste my whole weekend trying to get a straight answer.  I have other computers that I am currently using the service on and do like the program, but as for my Vista 64 bit looks like I may go to Macafee for protection.  It just amazes me as big as Verizon is and as popular this Vista has become they are not on the ball in keeping up with technology.

  • Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine, tried solutions from other threads with no luck, just thought i'd see if anyone else had any ideas, thanks.

    Hi all, i can't sync over wifi between my iPhone 4 and Windows 7 64 bit, wifi sync works with the same phone and my Windows 8 machine so the problem seems confined to Windows 7. I've tried solutions from other threads -
    Making sure everything is allowed through firewall
    Rebooting phone/laptop/router
    Disabling ipv6
    Disabling all networks except the one curently on
    Re-installing iTunes
    Restoring iPhone
    No luck with any of those unfortunately so i just thought i'd see if anyone else is still without wifi sync after trying those as well and if you ever found a fix, thanks.

    I just wanted to leave a note that it's working now. I'm not sure if it was the latest iTunes update that got it working or that i decided to start a new library instead of using the one i had backed up on Windows 8 (it didn't occur to me to check using the old library when i re-installed iTunes). But if anyone is having this problem, it might be worth trying again with a new installation of iTunes to see if the latest update works for you, and if not, try using a fresh library instead of a backup (by fresh library i mean discard your old library completely and start a new library, not just restore as new iPhone, a whole new library).

  • New iTunes still not working with 64 bit operating systems?

    When will iTunes support advanced 64 bit operating systems...
    Would seem that a next generation phone would work with the next generation of operating systems...

    iTunes does work with vista 64 bit. I can sync my iPod with it. It's the 'Apple Mobile Device Support' portion that is required by the iPhone that isn't working.

  • Itunes not working with Vista Home Premium 32-bit

    Itumes 10.6.3 version will not work with Vista Home Premium. I have a 32-bit operating system. I'm not sure what to do next. It appears in trying to update it deleted the old itumes, as I can't find a copy of it when I search the computer.

    Then I installed Quicktime on its own - still get the same error 'Quicktime has stopped working;
    Okay. That will be the source of the iTunes problem. (Without a properly working QuickTime, iTunes won't work correctly.)
    Checking on things that can cause QuickTime launch errors now.
    Have you at any stage installed any Codec Packs, any copies of the programs QT Alternative, QT Lite or Storm Codec, or any media converter programs that can convert files into QuickTime readable formats?
    (I'm checking on these things because depending on the versions of the programs/codec-packs, these can install earlier versions of QuickTime componentry on a PC, which can interfere with the running of a higher version of QuickTime.)

  • "Open with Explorer" no longer works with IE 10 & 11 without 32-bit -- What alternative do we have?

    I know that if we open SPS 2010 in IE 10 & IE 11 in 64-bit O/S, "Open with Explorer" no longer works because this function requires 32-bit version of IE.
    I give up to find a way to open IE 10 in 32-bit -- I had tried several so-called solutions but none works for me.  So, I'm looking for an alternative: is there an URL that I can put in
    Windows Explorer's address bar to open the SharePoint page directly?
    I had tried http://mysps/somefolder/etc/      failed!
    I had tried \\mysps\DavWWWRoot            failed again!
    So, I would like to hear to those who have succeeded to use "Open with Explorer" with IE 10 or 11 installed in 64-bit O/S.

    Hi Horinius,
    According to your description, my understanding is that "Open with Explorer" didn’t work with IE 10 & 11 in SharePoint 2010.
    I  commend you use IE 10 or 11 32-bit rather than 64-bit. Then check whether the browser SharePoint add-ons are enabled. If  not, please enable them.
    You can check browser add-ons by opening IE->Tools->Programs->Manage add-ons-> check all add-ons related to SharePoint, such as SharePoint OpenDocuments Class. If there is not any add-on related to SharePoint, please repair your Office by clicking
    Control Panel->Programs and Features-> select your Office, and right-click it, then select ‘Change’.
    Please make sure that webClient service is running on your machine by opening Start->Administrative Tools->Services.
    Here are some similar posts for you to take a look at :
    http://social.technet.microsoft.com/Forums/en-US/233c285b-1359-4d2b-82bf-009565bf93da/sharepoint-open-with-explorer-not-working?forum=sharepointadmin
    http://wmostafaw.wordpress.com/2011/12/08/opening-list-or-document-library-in-windows-explorer/
    http://stackoverflow.com/questions/8926551/your-client-does-not-support-opening-this-list-with-windows-explorer
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Getting Dynamic Context Sensitive Help API to work with Visual Studio 2012 and 64 bit?

    We have RH 9.
    Our developers are working on implementing RH's dynamic CSH API inside of our software product:
    http://help.adobe.com/en_US/robohelp/robohtml/WSa7dd8288c271d662-26f4398e12b0c229082-8000. html
    The instructions our developer found say:
    Call your Help projects with the function RH_ShowHelp. The source code for this function is contained in the support files which you import into your development project. Languages supported are Visual Basic, C/C++, JavaScript, and Java. The files are in C:\Program Files\Adobe\Adobe RoboHelp [version]\CSH API. The files are:
        CSH API\RoboHelp_CSH.cpp (C/C++, dependent on the .h)
        CSH API\RoboHelp_CSH.h (C/C++, dependent on the .cpp)
    I zipped up the CSH API from my RH 9 version and sent it to the developer. We're using Visual Studio 2012.
    But now the dev is asking, "Is there a newer version? This one doesn't compile in win32 without me making some tweaks, and doesn't work at all in x64..." and "Is RoboHelp10 an option? 9 doesn't seem VS2012 compatible or x64 compatible."
    Does anyone know if there are there is a later version of the API available that works for 64-bit / VS 2012?

    Hi,
    The RoboHelp 10 API should work for WebHelp created with RoboHelp 9. Since the RH10 API will now support Multiscreen HTML5 (introduced with RoboHelp 10), I imagine it will work with VS 2012. But I’ve not tried that. You can try the RH10 API, but Adobe won’t support it
    Alternatively: A colleague of mine created a custom C# API some time ago. That might work for you: http://www.wvanweelden.eu/blog/2012/08/03/custom-webhelp-apis
    Greet,
    Willam

  • I am using Windows 7 64-bit on a partitioned hard drive on a MacAir.  The trackpad will only work with a click.  How do I get the full function of tap and scroll?

    I am using Windows 7, 64-bit on a partitioned hard drive on a  2012 MacAir.  The trackpad only works with clicking.  How do I get the full function of tap and scroll? (I have this on a 2011 Mac Pro with 32 bit Windows 7 and it works properly.)

    Windows Control Panel>Boot Camp Control Panel>Trackpad.

  • Crysis Warhead 64-bit Won't Work with Windows 7 64-bit Under Boot Camp

    Hi. I installed the patch 1.1 for Crysis Warhead which has the 64-bit version of the game which I'm running under Windows 7 64-bit on Boot Camp and I've tried the the compatibility mode (Vista to Vista SP2). I've also updated the ATI drivers as well as the Boot Camp drivers. I'm using the latest Snow Leopard.
    When I click on the game's application (64-bit version), it would launch then it goes black with just the mouse cursor (you can move it about) which seems to be in low resolution and I guess it would crash so I would push the button on this late iMac 2009 and Windows would go back to the desktop then shutdown.
    Has anyone made Crysis Warhead 64-bit work with Boot Camp Win7 64-bit with this iMac (it has the ATI 4850)? Is this because it's Boot Camp or that it's Windows 64-bit or is it the ATI graphics chip? Thank you in advance. Gbu.
    Message was edited by: Alvin777

    since bootcamp allows windows to run natively, it's not an imac issue, but rather an issue with your windows, so you probably get better answers in a windows forum or the crysis forums.
    in any case, installing newer ATI drivers (ati.com) might help, but it's just a wild guess

  • How can I obtain a version of Print Studio Pro that works with Photoshop Elements 13 (64 bit)?

    How can I obtain a version of Print Studio Pro that works with Photoshop Elements 13 (64 bit)?  The advertising refers to Print Studio Pro 2 but all I find available to download is version 1.35.

    Thanks - I did notice that the 2 was a superscript on one site but on another (I think the one for the Pro-10 printer) it was definitely a 2 in line with the rest of the text and separated by a space (at least on my browser).  At any rate, I suspected something of the kind and will simply use Photoshop Elements 11 when I want a pattern print until the change is made.
    If you have an inside line to Canon you might also suggest some changes to their Image Garden program, specifically its handling of DVD label projects.  It has several themes and within each theme several layouts.  As far as they go these are fine but they do not give nearly enough flexibility.   The boxes for insertion of images are useful as is the simple procedure for rescaling the image so it is cropped in varying ways while staying within the fixed box.  However, it should be possible (a) to relocate the boxes on the page and (b) to resize and reshape the boxes - probably by a control which would become available by right-clicking on the box.  For example, there are times when the user might want to include a full 16 x 9 frame shot as one of the images, and in general the aspect ratios of the provided boxes do not permit this.
    I have over the years preferred to use Word for this purpose after setting up masks to expose just the printable area of the DVD or Blu-ray disc, setting up the margins so that the center of the disc is in the horizontal center of the page, and finally introducing text and pictures and adjusting the font size of blank lines above the disc to line everything up properly in the vertical direction.  A typical layout might involve one large picture, located so the center hole and the curved outer edge do not block anything important, or two pictures side by side, or four pictures centered vertically (to minimize the effect of the outer edge of the disc) but possibly of different widths (so as to make both close-ups and wide scenes optimal on the same disc label).  The text then goes above and below the pictures.  All of this works perfectly so I probably wouldn't use Image Garden very often for this purpose, but the inability to resize and relocate the boxes must be very limiting for others as well. 
    Some of the layouts have image locations severely reduced by the edge of the disc.
    As I said ... if you have an inside line to Canon .. but if not, please excuse the length of this post!

  • Will Adobe Camera Raw 7.4 or 8.7.1 work with Adobe Photoshop CS 5 version 12.1 x64 bit on a Mac OSX version 10.7.5 Lion.I am having differculty opening Raw RAF files on Camera Fuji X100s.Many thanks for your help out there.

    WILL  Adobe Camera Raw 7.4 or Later version 8.7.1 work with Adobe Photoshop CS5.5 extended version 12.1 x 64 bit with a Mac OSX
    10.7.5 lion. I am having trouble opening RAF raw files on my newly acquired Fuji X100S camera.Many thanks

    With that version of Photoshop, the most recent version of Camera Raw you can use is 6.7. If updating your Photoshop or subscribing to the creative cloud is not an option then you could use the free DNG converter provided by Adobe. The latest version of the DNG converter is 8.7.1. I am not familiar with Mac operating systems, so I'm not certain if your OS is compatible with the latest version. You can download it and try.
    Adobe - Adobe Camera Raw and DNG Converter : For Macintosh : Adobe DNG Converter 8.7.1

Maybe you are looking for

  • Audio files suddenly showing up as "Other" after connecting to iTunes

    This is the second time this has happened, and I'm hoping there's a better fix than restoring the whole phone. I have a 3G iPhone with 3.0 software. I plugged in the iPhone to charge using the usb cable, and when clicking on the device in iTunes, the

  • Oracle 11g upgrade prerequisite fails for all the values

    Hi, We have planned Oracle upgrade from 10.2.0.4 to 11.2.0.2. We have followed the upgrade guide Database Upgrade Guide "Upgrade to Oracle Database 11g Release 2 (11.2): UNIX". Our OS versionis HP-UX ia64 B.11.31. According to the upgrade guide we ha

  • Eroor messages

    I JUST bought this (Envy 4501) yesterday and have done everything (I believe) correctly...but I cannot pursue the balance of the installation of the wireless becuase I have an error message that won't go away..it states "OLDER CARTRIDGE-cartridges fo

  • I have lost all my Podcasts. Please help

    Hi there, I have had to recently format, but I wrote down the names of my subscribed Podcasts, and re=subscribed to them. But I am only able to download recent Podcasts, not all of them? Where can I find all the old ones? E.g., Happy Tree Friends was

  • Different button and different parsing?

    Hi all, I have a strange problem. I have made the xml that I attach, if I see it from service button all is ok but if I see it from directory button I don't see anything. Nothing error too. From directory button I have added a menu list that point to