Bluetooth key pairing on x61s

I got a Logitech DiNovo Edge keyboard, and I can't get it to work with the built in bluetooth in my x61s.
When I search for bluetooth devices using my bluetooth tools, the keyboard pops up correctly. When I then connect to the keyboard, it prompts me for 7 random digits, which is a part of the keypairing process. The problem is:
I can enter the 7 digits from my bluetooth keyboard, but when it's done, the keyboard disconnects again - as if I didn't enter them correctly.
I have tried several times, and updated bluetooth drivers, but I can't get it to work.. Next I'm going to BIOS update.
But it's strange, since I can both register the bluetooth device and type in numbers from it. It's simply the key pairing, which goes wrong.
I hope someone can help me please!
Message Edited by Ljorring on 12-17-2008 05:15 AM
Solved!
Go to Solution.

I finally got it to work!!
What I did was:
1. Go to Start->Run->'Services.msc'
2. Find 'Logitech Bluetooth Service'
3. Start service and Turn on your Dinovo Edge Keyboard
4. Now a guide should pop up, and the rest is piece of cake.
I could not find help anywhere - I simply browsed the services without any clue at all. It's most furtunate, that the solution was in there...

Similar Messages

  • Can a link 5 usb key paired with hp's wireless elite keyboard?

    Hi, I have a link 5 wireless mouse and a old hp's wireless elite keyboard.  I don't know if they both use bluetooth or one is bluetootha and the other 2.4GHz or not.  But can a link 5 usb key paired with a hp's version 1 wireless keyboard?  If not, how can I get a wireless usb key for my hp wireless eilte keyboard?

    Hello,
    A Link 5 USB mouse can be used with some devices and HP has listed them at the following link:
    HP Link-5technology liberates USB ports
    HP also introduced new PCaccessories with HP’s exclusive Link-5 technology. Link-5 allows users to connect up to fiveHP-compatible PC accessories with one receiver, freeing up valuableUSB ports.
    There are no drivers orsoftware to install. Users simply press the ”Connect” button on aLink-5 device to pair it with their PC. The wireless receiver then“remembers” all paired devices, making Link-5 accessories ideal forthose using a PC in multiple settings such as the home, office orother mobile locations.
    Link-5 delivers reliableconnectivity using 2.4-GHz wireless technology and has anintelligent sleep mode to ensure the longest possible battery life.The latest Link-5 accessories lineup includes:
    HP Wireless Mini Keyboard: Just the right mobile companion fora tablet or entertainment PC, this full-featured keyboard islightweight and ultra-small in size.
    HP Wireless Ultrathin Wireless Keyboard: Offering a stylishlook and feel, this keyboard is durable, full-featured and a greatvalue.
    HP Wireless Elite v2 Keyboard: Featuring a sleek, ultra-slimdesign, this keyboard offers superb performance and comfort.
    HP Wireless Optical Comfort Mouse: Offering a comfortable,secure grip for use in the right or left hand, this mouse featuresan optical sensor with adjustable sensitivity that works on mostsurfaces.
    HP Wireless Laser Comfort Mouse: Using a laser sensor withadjustable sensitivity, this mouse delivers optimal performance andworks on most surfaces.
    HP Wireless Mobile Mouse: Designed for users who are on the go,this mouse delivers reliable wireless connectivity at a greatvalue.
    It is only mention v2 not v1, so not sure if it will work. You should not be able to buy a key, because each device is sold with their specific usb receiver, so the answer is, you cannot get one, except if you buy  a new part.
    Thanks,
    I work for HP! Please remember to provide and if this helped click ON

  • IPad bluetooth key repeat bug?

    I've got a bluetooth keyboard dock combo; and a regular bluetooth keyboard for my ipad. Sometimes when its docked in the combo; but still connected via bluetooth to the other keyboard; I'll get a continuous key repeat when entering data into a password field. It'll just go on and on. I have to disconnect it from bluetooth keyboard; and all is fixed. A bug?

    I have somewhat the same problems mentioned. I thought I was the only one but when I read this, I felt some comfort. Just something to contribute and hopefully you guys can shed some light on this.
    I just bought my iPad 2 about two weeks ago. Before that I was playing around with my parent's iPad first generation.
    For both iPads, I have the same problems while using the same wireless keyboard on both of them.
    1. While typing, at random times the wireless keyboard stops responding and the on screen keyboard shows up.
    2. While typing, also at random times, the wireless keyboard stops responding and the same alphabet that I last typed in would multiply itself until I either press "command + A" and delete or lock my parent's iPad and iPad 2.
    3. While typing, my wireless keyboard stops responding, on screen keyboard shows up, I select my on screen keyboard to hide, continued typing on the wireless keyboard, it stops responding again and my iPad2 restarts in a split second with the black backdrop and apple logo in the middle and goes to lock screen. Then everything is fine.
    4. While not typing, on screen keyboard shows up at random times while bluetooth is paired to wireless keyboard and then goes back down, all this while bluetooth icon at the top screen of the iPad2 flashes.
    I don't know what is wrong. At first I thought my iPad 2 has a problem but when I remembered the same problems occurred on my parent's iPad first generation, I don't know if it is just my keyboard or the iPad(s) have a problem.
    I'm starting to think that its because of the Bluetooth Wireless Keyboard. A bug I suppose?

  • SSL: How to use the same key pair for ABAP & JAVA?

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

    Hello,
    I want to setup an XI (3.0 on Netweaver04)installation in the way, that ABAP AS and JAVA AS use the same key pair for SSL. My problem is to define the same private key on ABAP and JAVA. With the JAVA Administrator I am able to define or import a private key. But I could not find a possibility in ABAP to manage private keys in order to use the same on as in JAVA. What is the procedure for this?
    Thanks and Regards,
    Frank Tottleben

  • I need help with Creating Key Pairs

    Hello,
    I need help with Creating Key Pairs, I generate key pais with aba provider, but the keys generated are not base 64.
    the class is :
    import java.io.*;
    import java.math.BigInteger;
    import java.security.*;
    import java.security.spec.*;
    import java.security.interfaces.*;
    import javax.crypto.*;
    import javax.crypto.spec.*;
    import au.net.aba.crypto.provider.ABAProvider;
    class CreateKeyPairs {
    private static KeyPair keyPair;
    private static KeyPairGenerator pairGenerator;
    private static PrivateKey privateKey;
    private static PublicKey publicKey;
    public static void main(String[] args) throws Exception {
    if (args.length != 2) {
    System.out.println("Usage: java CreateKeyParis public_key_file_name privete_key_file_name");
    return;
    createKeys();
    saveKey(args[0],publicKey);
    saveKey(args[1],privateKey);
    private static void createKeys() throws Exception {
    Security.addProvider(new ABAProvider());
    pairGenerator = KeyPairGenerator.getInstance("RSA","ABA");
    pairGenerator.initialize(1024, new SecureRandom());
    keyPair = pairGenerator.generateKeyPair();
    privateKey = keyPair.getPrivate();
    publicKey = keyPair.getPublic();
    private synchronized static void saveKey(String filename,PrivateKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream(new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    private synchronized static void saveKey(String filename,PublicKey key) throws Exception {
    ObjectOutputStream out= new ObjectOutputStream( new FileOutputStream(filename));
    out.writeObject(key);
    out.close();
    the public key is:
    �� sr com.sun.rsajca.JSA_RSAPublicKeyrC��� xr com.sun.rsajca.JS_PublicKey~5< ~��% L thePublicKeyt Lcom/sun/rsasign/p;xpsr com.sun.rsasign.anm����9�[ [ at [B[ bq ~ xr com.sun.rsasign.p��(!g�� L at Ljava/lang/String;[ bt [Ljava/lang/String;xr com.sun.rsasign.c�"dyU�|  xpt Javaur [Ljava.lang.String;��V��{G  xp   q ~ ur [B���T�  xp   ��ccR}o���[!#I����lo������
    ����^"`8�|���Z>������&
    d ����"B��
    ^5���a����jw9�����D���D�)�*3/h��7�|��I�d�$�4f�8_�|���yuq ~
    How i can generated the key pairs in base 64 or binary????
    Thanxs for help me
    Luis Navarro Nu�ez
    Santiago.
    Chile.
    South America.

    I don't use ABA but BouncyCastle
    this could help you :
    try
    java.security.Security.addProvider(new org.bouncycastle.jce.provider.BouncyCastleProvider());
    java.security.KeyPairGenerator kg = java.security.KeyPairGenerator.getInstance("RSA","BC");
    java.security.KeyPair kp = kg.generateKeyPair();
    java.security.Key pub = kp.getPublic();
    java.security.Key pri = kp.getPrivate();
    System.out.println("pub: " + pub);
    System.out.println("pri: " + pri);
    byte[] pub_e = pub.getEncoded();
    byte[] pri_e = pri.getEncoded();
    java.io.PrintWriter o;
    java.io.DataInputStream i;
    java.io.File f;
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pub64"));
    o.println(new sun.misc.BASE64Encoder().encode(pub_e));
    o.close();
    o = new java.io.PrintWriter(new java.io.FileOutputStream("d:/pri64"));
    o.println(new sun.misc.BASE64Encoder().encode(pri_e));
    o.close();
    java.io.BufferedReader br = new java.io.BufferedReader(new java.io.FileReader("d:/pub64"));
    StringBuffer keyBase64 = new StringBuffer();
    String line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] pubBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    br = new java.io.BufferedReader(new java.io.FileReader("d:/pri64"));
    keyBase64 = new StringBuffer();
    line = br.readLine ();
    while(line != null)
    keyBase64.append (line);
    line = br.readLine ();
    byte [] priBytes = new sun.misc.BASE64Decoder().decodeBuffer(keyBase64.toString ());
    java.security.KeyFactory kf = java.security.KeyFactory.getInstance("RSA","BC");
    java.security.Key pubKey = kf.generatePublic(new java.security.spec.X509EncodedKeySpec(pubBytes));
    System.out.println("pub: " + pubKey);
    java.security.Key priKey = kf.generatePrivate(new java.security.spec.PKCS8EncodedKeySpec(priBytes));
    System.out.println("pri: " + priKey);
    catch(Exception e)
    e.printStackTrace ();
    }

  • Is a Public/Private Key Pair possible in SAP?

    I have a web service that I would like to run as part of a nightly script. I currently use username/password authentication, but it is not acceptable to have them hard coded, due to Sarbanes-Oxley rules. SAP's site claims to support authentication with x.509 certificates, but is unclear on the implementation details. How could I go about setting up and using a public/private key pair in SAP?

    Not really a portal question, and maybe you'll get a better result in a security forum...
    However, briefly, yes, the AS Java supports X509 certificates as an authentication mechansm. You need to use Visual Admin to generate a server side certificate, then you need the client side to register its own X509 certificate and then in the Java user admin you need to associate the client certificate with a known user. Now when the client executes the web service call it can pass the certificate and the AS Java will back translate the certificate to a real username.

  • Audio NOT functioning correctly after botched bluetooth headset pair attemp

    After trying to connect my bluetooth headset (Motorola HS820) to my Macbook Pro i am having issues with several apps including firefox and mediacentral. Audio from these programs will not play. I get an error message saying there was a problem with my bluetooth audio configuration.. However apps like itunes and skype function correctly..
    When attempting to pair my bluetooth headset the bluetooth assistant pairs it succesfully but when it connects it immediately disconnects.. after several attempts at tricking it to connect (advice from posts in mac.com forums) i have given up and deleted these devices from my bluetooth preferences and still have these problems..
    I'm assuming there is some config file still in place pointing these apps in the wrong direction?
    Macbook Pro Mac OS X (10.4.6) Dual Booter

    Just verified Audio is not working for me in safari either...
    Example i'm using is any video on youtube.com
    Edit: I guess this would be a problem with macromedia flash then?

  • PKCS#11 provider - ECDSA key pair generation on token

    Hello,
    I want to generate ECDSA key pair on HSM (nCipher's netHSM) using SunPKCS11 provider and Java 6.
    After generation for all supported curve names (e.g. secp256r1) I try to call getEncoding method from PublicKey object (keyPair.getPublic().getEncoded()) and
    I get RuntimeException
    caused by java.io.IOException: "Point does not match field size"
    at sun.security.ec.ECParameters.decodePoint(ECParameters.java:75)
    at sun.security.pkcs11.P11ECKeyFactory.decodePoint(P11ECKeyFactory.java:61)
    at sun.security.pkcs11.P11Key$P11ECPublicKey.fetchValues(P11Key.java:1002)
    Keys are accessible on HSM.
    Everything is well configured and works fine with RSA keys.
    Using IAIK PKCS#11 provider I got proper values. Is it any bug in SunPKCS11 provider?
    Regards,
    MarcinP

    I recently had a problem with ECDSA and the PKCS#11 library of nCipher. Here's info from one of their engineers about the PKCS11 library:
    "There are two separate issues - one is that our current pkcs11
    release doesn't support ECDSA signature with SHA-2 hashes
    (the v11.00 firmware adds support for it, but the main release version of
    the pkcs11 library hasn't been updated to take advantage of it yet).
    There is a hotfix version that does support SHA-2 hashes with some
    restrictions, talk to [email protected] for details, and V11.10
    should be out soon and have that merged in.
    But the issue with setting CKA_SIGN is that our underlying HSM API
    allows elliptic curve keys to be either key exchange (ECDH) or
    signature (ECDSA) keys, but not both at one.
    At the PKCS #11 level, if you specify CKA_DERIVE=true and let
    CKA_SIGN default, it will default to false, and vice versa.
    If you specify both CKA_DERIVE=true and CKA_SIGN=true, then we
    return CKR_TEMPLATE_INCONSISTENT because we can't do both with
    the same key. (However, the tests using C_GetMechanismInfo will
    show that we can do both mechanisms, because we can - so long
    as you use different keys, even though they have the same PKCS#11
    type.)
    I can't comment on when or how that will be changed."
    I was using the PKCS#11 library through NSS when I ran into the problem, but I imagine Java would run into similar problems also using the PKCS#11 library. I was able to generate keypairs but not create a CSR (which required making a signature, which required SHA-2).
    Can you just use the java classes to speak to the netHSM? I've never directly written code to do so myself, but I have used Corestreet's OCSP product that uses the java classes to speak to the nCipher HSMs (though not using EC). It might work better than going through the PKCS#11 layer. There should be a java directory under NFAST_HOME that contains some jars.
    Please post back if you figure anything out as I'll probably be playing with this stuff myself soon.
    Dave

  • The wireless keyboard is not working with my iPad2. I turned on Bluetooth and paired it.  What else is there to do?

    The wireless keyboard is not working with my iPad2.  I turned on bluetooth and paired the device.  What other hidden step is there to do?

    Well, the tiny green light comes on and blinks. . . After a frustrating time, I turned everything off.  Later, when I tried the keyboard again, it worked.  I guess the bluetooth process takes longer than expected.  So thank you for taking the time to help a technically impaired person!!

  • Generating key pair on PKCS#11token and save it there

    Hello,
    again i'm completely lost in this PKCS11 jungle.
    What i want to do:
    Generating key pair on crypto pkcs11 token and store it there.
    In the moment i've tried eg:
    sun.security.pkcs11.SunPKCS11 p = new sun.security.pkcs11.SunPKCS11(configName);
    Security.addProvider(p);
    Builder builder = KeyStore.Builder.newInstance("PKCS11", p, new KeyStore.CallbackHandlerProtection(new UserInputDialog(new JDialog(),"test","test")));
    KeyStore ks = builder.getKeyStore();
    ks.load(null,null);
    KeyPairGenerator gen = KeyPairGenerator.getInstance("RSA", p);
    gen.initialize(1024);
    KeyPair kp = gen.generateKeyPair();
               Here access to token works. The callback PIN dialog comes up and i can login.
    But i'm not sure whether the key are generated on this PKCS11. And they are not stored there.
    How i can generate keys are stored there.
    (like with keytool -genkeys ). In keytool case a certificate is stored.
    ... every little hint, also to some documentation i've not seen, is very welcome ...
    Thank You !
    Regards
    Thomas
    .

    First, you need to get a KeyStore representation of the PKCS#11 token with code similar to this, I'm using NSS as the PKCS#11 token in this example:
    Provider nss = new sun.security.pkcs11.SunPKCS11(configFile);
    Security.insertProviderAt(nss, 1);  //you may not want it at highest priority
    KeyStore ks = KeyStore.getInstance("PKCS11", nss);
    ks.load(null, password);From the testing I've done in the past with various tokens, when you generate an asymmetric keypair (e.g. RSA like you are) specifying the PKCS11 provider, it creates it right on the token automatically and code like below is not needed.
    To store the key in the keystore, use code similar to this, I'm using NSS again and storing a symmetric key:
    KeyGenerator kg = KeyGenerator.getInstance("DESede",nss);
    SecretKey tripleDesKey = kg.generateKey();
    KeyStore.SecretKeyEntry skEntry = new KeyStore.SecretKeyEntry(tripleDesKey);
    ks.setEntry(randAlias, skEntry, new KeyStore.PasswordProtection(password));

  • How to indetify key pair in Java?

    Hello
    I need only to know if some private and public key generating one key pair.
    I don't want to try it through encrypt/decrypt process and checking data.
    Thanks

    I have some private key and some public key and I need to detect if private key belongs to some public key. It shouldn't be possible to get into such a state in the first place. Key pairs should be stored in such a way that they are always together, e.g. in a java.security.KeyStore or an HSM, most probably associated with a Certificate.
    If true, then I can encrypt data by one of them and correctly decrypt by second.You can encrypt with the public key and decrypt with the private key.
    If false ,I will got incorrect data after decryption.No you won't, you'll get an exception.

  • Web Server 6.1 - How recovery Key Pair File Password

    I have installed Sun Web Sever 6.1, i am initialized Trust Database, then I generate Request a Certificate for verisign, then verisign send me the Certificate but when i tray install the certificate he say me invalid password, I dont remenber the Key Pair File Password who can recory Key Pair File Password?
    Please help me!

    Assuming that the security libraries are working the way they're supposed to, the password is not recoverable.
    Your best option, other than trying really hard to remember your password, is to delete the certificate and key databases and start over.

  • Can someone help me? Why i can not build RSA key pair

    i download the java_card_kit-2_2_01-win-gl.zip from sun's web site
    and i use the keypair class to build a RSA key pair
    but it always throws NO_SUCH_ALGORITHM excption.
    how can i build a key pair

    This has been covered a million times. There isn't any crypto implementation with Sun's kit. This is mentioned in the documentation.

  • [Security:090809]The key pair could not be retrieved

    Hi All,
    I have created the key pair successfully and then exported them to file and then imported to DemoTrust.jks also by those commands:
    keytool -genkeypair -alias wlpkey -keypass password -keyalg rsa -keysize 1024 -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -dname "CN=Oracle Corp, OU=WLP, O=Oracle, L=Boulder, ST=CO, C=US"
    keytool -exportcert -alias wlpkey -keypass password -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -file wckey.der
    keytool -importcert -keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase -file wckey.der -alias wlpkey -keypass password
    I can see that my alias is present in DemoTrust.jks by this command:
    keytool -list -keystore DemoTrust.jks -storepass DemoTrustKeyStorePassPhrase
    Now When I want to modify the SAML Security by creating a new Security Credential Mapping in weblogic admin console (Home >Security Realms >myrealm >Credential Mappings>PKI>New), I am getting following exceptions:
    +[Security:090809]The key pair could not be retrieved from the keystore with the supplied alias wlpkey and its password.+
    An error occurred while creating a security credential. Please check the log for more details.
    Can anyone point out anything to overcome this error?
    I am using WLP 10.3.4.
    I have tried this by creating the certificates from WLP_HOME/OFM_HOME and WLP_HOME/wlserver_10.3/server/lib also.
    What else can I try?
    Regards
    Jay
    Edited by: 902059 on Apr 6, 2012 2:14 AM

    The password that you have configured is incorrect and hence the error.
    [Security:090809]The key pair could not be retrieved from the keystore with the supplied alias wlpkey and its password.
    An error occurred while creating a security credential. Please check the log for more details.You need to give the password of the private key (that you have used while creating the key pair) in the PKI credential mapping configuration. The one highlighted below:
    keytool -genkeypair -alias wlpkey -keypass password -keyalg rsa -keysize 1024 -keystore DemoIdentity.jks -storepass DemoIdentityKeyStorePassPhrase -dname "CN=Oracle Corp, OU=WLP, O=Oracle, L=Boulder, ST=CO, C=US"Thanks,
    Patrick

  • Bluetooth is pairing but is not functioning

    I bought my Iphone4 exactly a year back. In the very begining, I paired it with the Bluetooth of my Toyota Mark-X car. It was working perfectly. Every time, I receive a call, automatically the audio shuts down and I am able to take a call and as soon as the call gets finished, audio starts playing right from that second where it left !!
    Last week, when IOS5 was released, I immediately upgraded it .... it was running perfectly, as usual but just after 2 days, it stopped functioning !! I mean Bluetooth gets paired to my Car but the call is not properly diverted to the Car Audio !! First I thought that there is a problem with my Mark-X bluetooth software; so I changed my phone, paired my old Samsung with it and it started working exactly the way it used to !! Which means that there is no problem as far as my Car hardware is concerned !!
    I, then, deleted my Iphone profile from my car and then re-paired it .... Problem is still the same; my Car is detecting Iphone & is also pairing to it BUT the Bluetooth functionality is not working !! Even as a matter of fact, before this happened, whenever I received a call, the Iphone screen start showing "Sources" option in the place of "Speaker" icon; from there you can select that whether you want to receive it on Bluetooth or phone or speaker !! But now, it shows the bluetooth as connected but does not show any option on the Iphone screen NOR it fuctions !!
    Any Ideas ??

    I am having exactly the same problem. I have a 2010 Ford Mondeo and it has always paired up perfectly with my 3GS iphone.
    Since the ios5 upgrade it comes up that it is paired and I can access my phonebook etc through the car's system no problems. However when I make a call using the car, it is potluck as to whether it will work or whether it drops out from the car straight away (but continues with the call in my phone which means I have to pull over to stop the call in my phone if it hasn't jammed the phone up).
    Even though it indicates that my phone and car are paired, and I may have even received or made a call during the same trip, incoming calls are not put through the car system so I arrive at my destination to find I have missed calls on my phone.
    It seems ridiculous that an upgrade could be such a massive step back!!!

Maybe you are looking for