Wrong libraries for encryption?

My internet banking SW package calls for 'libcrypto.so.4', the system contains another version 'libcrypto.so.0.9.8'. In key conversion script is a call for 'libssl.so.4', system contains 'libssl.so'. Is there a chance to solve this somehow? Thanks a lot.

Any chance you can rebuild the banking package? That would be the best solution. If not, the kludgy, definitely-last-resort fix is to create symlinks to the current versions.

Similar Messages

  • Mail uses wrong certificate for encrypting S/MIME messages

    Encrypted email I send using Mail Version 4.2 (1077) under OS X 10.6.2 to my work account cannot be decrypted. It appears that Mail is using the signing certificate, rather than the encryption certificate, to encrypt the email.
    The internal Certificate Authority at my employer has issued two certificates to me: A signing and an encryption certificate. Both certificates are properly stored in my keychain.
    The encryption certificate carries a 0x20 in the key usage field to designate the certificate to be used for encipherment purposes. The signing certificate carries a 0x80 in the key usage field to designate the certificate to be used for digital signatures.
    I understand that the S/MIME standard stipulates that for encrypting messages, the certificate with 0x20 in the key usage field should be used by the mail application.
    However, messages I sent are encrypted using the signing certificate (0x80 in the key usage field) and therefore cannot be decrypted on the receiving end. I examined the encrypted email using an [application|http://www.eriugena.org/blog/?p=57] to extract the serial number of the certificate used for encryption.
    We are using Outlook 2003 as our mail application at work.
    Has anybody ever come across this problem? Am I missing something - is there a way to tell Mail what certificate to use for encryption?
    Thanks,
    -Michael.

    I'm have a problem that sounds related.
    Both my wife and I created self signed mail certificates, and sent email to each other and trusted each others certificates. We were then able to send encrypted emails back and forth and our emails showed up as having trusted digital signatures.
    Then, we both purchased Verisign email certificates, and installed them in our keychains, deleting the old self-signed certificates, and repeated the process of establishing a chain of trust.
    This worked fine for me running Snow Leopard but did not work for her on Leopard. Her emails to me appear to be signed by both the old self-signed certificate and to include the new verisign certificate. Looking at the message source there is only one application/pkcs7-signature block, but in the UI it is showing both certificates.
    I don't understand how the self-signed certificate is showing up at all, since it has been deleted from her keychain.

  • KDC has no support for encryption type

    Hi,
    I hope not too much people are not reading this post because of the very common error message. But I'm really somewhat confused:
    For testing Kerberos 5 SSO I set up a little domain controller running Windows 2003 Server and a client in the domain running Windows XP. In the active directory I created a service account with the logon test-service and a user account test-user. The switch "Use DES encryption types for this account" is set for both accounts and I reseted the passwords after setting the switch. Additionally I added a service principal name test/test.krbtest.local to the service account.
    On the client machine I execute a very simple JAVA client program that tries to obtain a service ticket for the service test/test.krbtest.local. If I configure the client to prompt for a password, the service ticket is obtained without a problem using etype 3 (sun.security.krb5.internal.crypto.DesCbcMd5EType). But when trying to read the existing TGT from the native windows cache the client exits with:
    KDC has no support for encryption type (14)The debug output tells the following:
    >>> Obtained TGT from LSA: Credentials:
    [email protected]
    server=krbtgt/[email protected]
    authTime=20070413112833Z
    startTime=20070413112833Z
    endTime=20070413212833Z
    renewTill=20070420112833Z
    flags: FORWARDABLE;RENEWABLE;INITIAL;PRE-AUTHENT
    EType (int): 0
    Principal is [email protected]
    Commit Succeeded
    Found ticket for [email protected] to go to krbtgt/[email protected] expiring on Fri Apr 13 23:28:33 CEST 2007
    Entered Krb5Context.initSecContext with state=STATE_NEW
    Found ticket for [email protected] to go to krbtgt/[email protected] expiring on Fri Apr 13 23:28:33 CEST 2007
    Service ticket not found in the subject
    Credentials acquireServiceCreds: same realmUsing builtin default etypes for default_tgs_enctypes
    default etypes for default_tgs_enctypes: 3 1 23 16 17.
    CksumType: sun.security.krb5.internal.crypto.RsaMd5CksumType
    EType: sun.security.krb5.internal.crypto.NullEType...Note that it says "Etype (int): 0" which I think is no valid encryption type at all. klist (from the windows resource kit) tells me that my tickets look like:
    Server: krbtgt/[email protected]
        KerbTicket Encryption Type: RSADSI RC4-HMAC(NT)
        End Time: 4/13/2007 23:28:33
        Renew Time: 4/20/2007 13:28:33
    ...But as mentioned above I set the option "Use DES encryption types for this account" for both the user and service account. Am I doing something wrong here??
    Additionally I thought JAVA 1.5.11 would support RC4-HMAC, is that wrong?
    Even more confusing:
    If I remove the "Use DES encryption types for this account" switch for the two accounts and configure my JAVA client program to prompt for a password, a ticket is obtained using the RC4-HMAC encryption type 23 (sun.security.krb5.internal.crypto.ArcFourHmacEType). But using the ticket from the cache again does not work.
    I'd appreciate any comments on that since I'm totally confused by now and have no idea on how to get this SSO thing working correctly in JAVA.
    Cheers
    P.S.:
    I just wanted to mention that adding
    default_tkt_enctypes = rc4-hmac
    default_tgs_enctypes = rc4-hmacto my krb5.ini has no effect on the desribed behaviour
    Message was edited by:
    sherazade

    Ok,
    perhaps I should have looked around the forum a little bit more in-depth...
    Setting the AllowTGTSessionKey registry key to 1 solves this issue...
    thanks

  • How to change RSAPublicKeySpec to Key for encrypt?

    I have RSAPublicKeySpec and I want to encrypt message with this key.
    How to change RSAPublicKeySpec to Key for encrypt message?

    I try to do this
    try {
    kf = KeyFactory.getInstance("RSA");
    pk = kf.generatePublic(pubCard);
    catch (NoSuchAlgorithmException ex4) { System.out.println("1");
    catch (InvalidKeySpecException ex4) { System.out.println("2");
    try {
    Cipher cipher = Cipher.getInstance("RSA");
    try {
    cipher.init(Cipher.ENCRYPT_MODE, pk);
    catch (InvalidKeyException ex2) { System.out.println("a");
    try {
    ticket = cipher.doFinal(mes.getBytes());
    catch (IllegalStateException ex3) {System.out.println("b");
    catch (IllegalBlockSizeException ex3) {System.out.println("c");
    catch (BadPaddingException ex3) {System.out.println("e");
    catch (NoSuchAlgorithmException ex1) {System.out.println("f");
    catch (NoSuchPaddingException ex1) {System.out.println("g");
    It cougth exception that "NoSuchAlgorithmException"
    What wrong with line
    Cipher cipher = Cipher.getInstance("RSA");
    please tell me

  • ITunes 7 or 7.1 w/ multiple libraries for 2 different iPods

    Can iTunes 7 or 7.1 have 2 libraries for two different iPods (1 iPod goes to 1 library and the other one goes to the different library) in one iTunes 7 or 7.1?

    It is possible to have multiple libraries with iTunes 7. To create or access a second (or more) library, hold down the Shift key in Windows (or the Option key in Mac) when launching iTunes. In the resulting dialogue you will get the option to create a new library or navigate to the other Library.
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one. This can prove tricky when using multiple iPods, if you don't use the keyboard command you can risk syncing to the wrong library:
    Using multiple iTunes libraries -Windows
    Using multiple iTunes libraries -Mac

  • Crypto libraries for embedded systems

    Hi, I need some crypto libraries for my Xlet running on a MHP receiver. I need that these libraries can use the public key extracted from a certificate and encrypt a digest using that public key. I can't use javax.crypto because it doesn't work on a limited MHP 1.0.2 receiver. I need something studied for it. Thank you!!!
    Edited by: fabio80s on Oct 23, 2009 3:24 AM

    >... very interesting article, which I'd like to share with
    you and hear your opinions about the 5th myth.
    Very interesting. I'd always wondered what happened to the Java chips...
    Here's a thought, and an associated question, if any of you reading this happen to be up on modern processor architecture...
    What about microcode? Back in school (decades ago) I learned a bit about microcode, which was like very simple, low-level instructions that a processor would "execute" to execute each assembly/machine language instruction. The idea was that if you needed to tweak the instruction set of a processor, you could rewrite its microcode. Seems like this would lend itself nicely to implementing a JVM in "hardware"... The question is, do they even use microcode anymore? With the pursuit of speed and optimization, I wonder if they didn't abandon it and go with highly specialized/optimized circuits instead...
    Back to the original question -- it would be somewhat ironic if Java weren't available for embedding systems. The original target system was set-top boxes, etc. I've tried a few JVMs on my Palm -- they're getting there!

  • [Solved] System asks for encryption password multiple times

    Hey guys,
    I have following problem:
    I am using dmcrypt for encryption of my hard drive but it seems like I have made a mistake when I installed it. But for the most time I ignored it.
    When I start my system it ask for the encryption password normally. The strange thing is that it also asks for the Password when services start.
    If I issue a command with systemctl start XXX I also get following message:
    Please enter passphrase for disk Crucial_CTXXXXXSSD1 (lukslvm)
    There is no problem if I just press Enter and go on actually but this still bugs me.
    I wonder what I did wrong at that time.
    Edit:
    /etc/crypttab:
    lukslvm UUID=xxxxxxxxxxx------xxxxxxxxxx none luks
    lvm pvscan:
    PV /dev/mapper/vgarch   VG vgarch   lvm2 [223,38 GiB / 0    free]
      Total: 1 [223,38 GiB] / in use: 1 [223,38 GiB] / in no VG: 0 [0   ]
    Last edited by Erhan (2014-12-17 12:45:53)

    Fixed by removing the entry in /etc/crypttab
    I don't even remember adding it there but it has been already some years.

  • Repeatedly asked for encrypted drive password

    Hi - I've just partitioned an external drive into two and encrypted each seperately by right clicking on them and choosing encrypt drive - all went well. One partition is for time machine and the other for random files. Then the first time I reattached the drive I was asked to put the encryption password in again, so I did and asked for it to be added to keychain - now everytime I plug the drive in it asks for the password again even though it is in keychain. I've deleted them from keychain and started again but I still end up with the same problem. Also, if you click cancel when it asks you for the password it goes ahead and mounts the drive using the keychain password anyway! What gives? Is there something wrong with the encryption or keychain? What am I missing?
    Thanks!

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • Password for encrypted external hardrive is not accepted, but correct in keychain

    Last night in umounted my encrpyted external harddrive from my Macbook. This morning I reattached it  back, and I was asked for my password, even that I have checked "Save password to keychain" which would automount it automatically, which worked fine for several months.....
    So I tried entering it my password several times, but it was not accepted.  I opend up the keychain management tool and you can unhide the password. The password I am entering is matching with that one stored in the keychain. I entered my password in a Terminal/Editor to see that for some funny reason the keymapping is wrong or something, and tried different USB ports for the hard drive. Nothing works..... So, what is happening here ?

    Hi Eric
    Thanks for you suggestion, I tried that, but the hard drive wouldn't react for 2-3 days. Also the tool said that there are no problems with the keys etc, IIRC.
    It looked like the filesystem had problems which wouldn't be repaired until unlocked, which wouldn't unlock until repaired (chicken-egg-problem).
    Then out of a sudden, it worked again, mysteriously. I bought a Timecapsule to have a backup device in general, and while I was setting up my network and stuff I realised that the icon for my harddrive appeared on the screen for no apparent reason. It works now as normal es ever, as nothing strange ever had happened. I had set the same password for my TC as I am using for encryption for the external drive.....
    I still don't know what really happened, but kids make sure, that you even backup your backups!
    Regards

  • I registered the wrong information for my iCloud account--I misspelled and now want to change it.  Help is needed to delete the account and start anew.

    I registered the the wrong information for my iCloud account--I misspelled the account name.  I accidentally spelled blackberry instead of blackbird.  How can I change this?

    If you don't want to use an alias you'll have to create a new account as you cannot change the @icloud.com address once created.  You'll have to create a new ID, verify the ID, then use the ID to create the new account, and migrate your iCloud data to the new account.
    If you are currently syncing data with iCloud, begin by saving any photo stream photos to your camera roll as mentioned above.  If you are syncing Notes with iCloud, you'll also need to open each of them and email them to yourself so they can be recreated in the new account.  Finally, if you are syncing any iWork documents with iCloud, turn off iCloud syncing in your iWork app settings.
    Then go to Settings>iCloud, tap Delete Account, and choose Keep on My iPhone when prompted.  Then in Settings>iCloud tap Get a Free Apple ID at the bottom, set up your new ID, verify the email address you use to create it by responding to Apple's verification email, then sign in with the new ID to create your new account.  Turn on your iCloud sync settings and choose Merge when prompted to upload your data to the new account.  When you turn Mail to On you will be prompted to create your new @icloud.com email address.  Be carefull to type it correctly as it cannot later be changed.

  • "Invoice History Report "show wrong balance for supplier invoice with USD

    Invoice History Report show wrong balance for supplier invoice with USD Currency
    After I run this report i see in the last of this report there is difference between the supplier total
    USD (Currency ) and the open Balance USD , it is decreased the open balance
    for supplier with 2300 USD with out any reasons
    bellow is some data copy of the report
    ======================================================
    Supplier Site Total: SAR 34,700.00
    Supplier Site Total: USD 39,000.00
    Supplier Total: SAR 34,700.00
    Supplier Total: USD 39,000.00
    Open Balance: SAR 34,700.00
    Open Balance: USD 36,700.00
    *** End of Report ***
    ==============================================
    please advise me from where can this differenc ( 39000 - 36,700=2300 )COMMING
    or it is bug in this report , becuase i compare this report with other report in account payable like
    -supplier open balance letter
    -invoice register report
    -invoice aging report
    all this report give me the amount for supplier USD =39000
    BUT AGIN FROM WHERE THE SYSTEM DECREASED THE AMOUNT TO 36,700
    thanks

    Can you try running Create Accounting For payments just before you run the Invoice History Report and re-check .
    Thanks

  • Can I have two different libraries for iTunes?

    I would like to have two different libraries for iTunes. How can I do it?
    Regards.

    To create or access a second (or more) library, hold down the Option key (or Shift key in Windows) when launching iTunes 7. In the resulting dialogue you will get the option to create a new library or navigate to the other Library: Using multiple iTunes libraries -Mac
    Note: You can only have one Library open at a time and iTunes will default to the last library opened if you don't use the keyboard command to choose one.

  • Seperate libraries for two ipods on same computer

    how can i set up seperate libraries for two ipods on same computer . running xp . after installing software for second ipod , i only have one version of itunes ,with only one library .tried setting up seperate playlists but that didnt help . thanks for help!

    The only way I know to have two entirely separate iTunes libraries on one computer is to have two Windows or Mac user accounts: How To Use Multiple iPods with One Computer

  • Multiple Libraries for iTunes

    I am wondering if there is any way to create multiple libraries for my music? I use my iTunes for both work and personal music and would like to be able to move my work music into a separate library. I've seen this concept in accounting programs, where you create new companys in order to store and track separate information. Any suggestions? I am currently using iTunes 5.0

    Cherrie:
    Try iTunes Library Manager. It's not free, but it does work.
    Lita

  • I used the wrong ID for iCloud on my iphone 5. It is linked to an email that no longer exists. Do I have to delete my iCloud completely and set it up all over again?

    I used the wrong ID for iCloud on my iphone 5. It is linked to an email that no longer exists. Do I have to delete my iCloud completely and set it up all over again?

    You can change the linked email/sign in email for your iCloud and Apple ID accounts from 1 site,
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Go to Manage your Apple ID
    Sign in with your current creditals
    On the left, click Name, ID and Email Addresses
    Under Apple ID and Primary Email Address, click Edit
    Type in your new Email.
    Go to Apple ID, click Edit
    Type in your new Email

Maybe you are looking for

  • Is there a way to import a .pdf into a pages document and have it wrap to a 2nd page?

    Is there a way to import a .pdf into a pages document and have it wrap to a 2nd page?

  • DBUS Error

    Hello Everyone,        I today did a clean install of Arch but im getting a error while boot up.Its with the "dbus" daemon.The error im getting is as follows:- [root@Rajiv-Nair rajiv]# /etc/rc.d/dbus restart :: Stopping D-BUS system messagebus       

  • Error 404--Not Found - After Installing Essbase 11.1.2.2

    Hi, I have experienced error. I have one box of EPM 11.1.2.2, using Windows 2008. After installing Foundation and configuring it, there's no problem at all. I can open workspace and interop as well. However I added Essbase, installing and configuring

  • Kmem_free error

    Hi, I am getting "prom_panic: kmem_free: block already free as a neighbor" error when install tries to load the secondary boot. HW description: Compaq Proliant 7000 server 4 Gb RAM 3100ES controller using 1 9.1 Gb drive in the array (port 1) Latest R

  • Need help resizeing a flash carousel

    so i have the carousel already made (i didn't make it i found it online) http://www.gotoandlearn.com/play.php?id=32 im trying to make the carousel 195 height 620 width but idk if i'm supposed to change the code or the stage size ,or both i tried chan