EKM OPEN_EXISTING Key specification options

Hello,
I am currently doing a PoC on a providers HSM for implementing encryption on SQL Server. 
PKCS#11 standard allows for keys to be created with the same name (they do have different thumbprints which is their unique identifier). 
SQL Server EKM commands to obtain keys appear only cater for collection by key name.
So let’s say we have HSM holding multiple versions of an identically named key. 
We would like to register a specific key with SQL server but the only command available is to OPEN_EXISTING by key name. 
SQL Server only allows for one key with a certain name to be registered.
CREATE
ASYMMETRIC KEY
ASKEY
FROM
Provider aProvider
WITH
PROVIDER_KEY_NAME =
'ASKEY,
CREATION_DISPOSITION=OPEN_EXISTING;
How can a specific version of the key be obtained?
Regards
Dan

Hello,
I am trying to involve someone more familiar with this topic for a further look at this issue. Sometime delay might be expected from the job transferring. Your patience is greatly appreciated.
Thank you for your understanding and support.
Regards,
Fanny Liu
If you have any feedback on our support, please click here.
Fanny Liu
TechNet Community Support

Similar Messages

  • Office 2013 click to run: configure specific options like in /admin setup

    Hi,
    In an Office 2013 click-to-run install, how can we  set f.e. the Exchange server, disable Junk mail protection (we have a seperate system for that), disable RSS, username to be used in Outlook (%username%) etc?
    We have that when using the office 2013 setup.exe /admin but not in the click to run.
    I don't find these options in the config.xml reference: http://technet.microsoft.com/en-us/library/cc179195%28v=office.15%29.aspx
    Please advise.
    J.
    Jan Hoedt

    Hi Jan,
    Click-To-Run version of Office 2013 does not contain the Office Configuration Tool (OCT). And the
    Config.xml file mentioned above is used to customize Windows Installer-based Office 2013 installations, not for Click-To-Run version of Office.
    To configure these specific options for Click-To-Run version of Office 2013, you can use
    Group Policy Administrative Template files (ADMX, ADML). The policy settings apply to both Windows Installer-based (MSI) and Click-to-Run version of Office 2013.
    Download link for the Group Policy Administrative Template files (ADMX, ADML):
    http://www.microsoft.com/en-us/download/details.aspx?id=35554 
    Here is the reference you'll need:
    http://technet.microsoft.com/en-us/library/cc178992(v=office.15).aspx
    Regards,
    Ethan Hua
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Error Implicit key specification is no longer allowed in the OO context.

    Hi,
    I have the following error message and i cannot figure out what it is and how can i solve it:
    E:Implicit key specification is no longer allowed in the OO context. You must use an INDEX, KEY or FROM specification. You must use an INDEX, KEY or FROM specification.
    DATA:    wa_negocio LIKE LINE OF i_negocio.
               READ TABLE i_negocio INTO wa_negocio.
              IF wa_result_package-gl_account = wa_negocio-YYVALUE.
                MOVE wa_result_package-/BIC/YYKEY+13(2) TO
                aux_s_result-negocio.
                APPEND aux_s_result to e_t_result.
              ENDIF.
    Thanks & regards,
    Diego

    Hi,
    In ABAP OO you can't use internal tables with header lines, instead you can use an work area, field-symbol or reference to get access to the lines of the internal table
    Check the below link....
    I am not sure how far it would usefull for you but check once ....
    Determining the approver in badi
    Regards,
    Satya

  • In Listcube tcode User specific Option disable for Save as Layout

    In Listcube tcode User specific Option disable for Save as Layout

    Yes...
    We want to disable global setting option...
    So we remove the s_alv_layo AUTHORIZATION OBJECT. It removes saving layout option from Listcube
    Do you know how we can disable Default setting option and enable user specific option?

  • Reverse posting key specification is missing for posting key 80

    A FI document was wrongly posted with posting key "80" instead of 40. And now we are not able to reverse it. System is giving following error --
    "Reverse posting key specification is missing for posting key 80"
    Document posted as
    50     207200     CASH - MAIN-O.H.     762.00-
    40     410120     CONVEYANCE EXPENSES     702.00
    <b>80     402440     STAFF WELFARE EXPENS     60.00</b>
    Please suggest
    Thanks & Regards

    Hi,
    Go to OB41, select the posting key 80 and in the third tab "Other attributes" mention Reversal Posting key. Like you can observe for posting key 40, reversal key 50 would have been assigned.
    Pl assign points, if helpful.

  • "Does jce have key specification for BlowFish

    hi friends,
    I need to know does jce has key specification class for
    blowfish algorithm as we have for DES and DESede(DESKeySpec
    and DESedeKeySpec respectively). If not, do we have a
    method for generating secret key for blowfish algorithm
    given byte[](key material)
    I tried out with SecretKeySpec, it raise an
    exception "NoSuchAlgorithmException" when creating
    instances of SecretKeySpec using "BlowFish".
    Can u please help me. It is very urgent.
    Thanks in advance
    regards,
    Deepa Raghuraman

    hi friend,
    I am using JDK1.3 and downloaded JCE1.2.1.
    When i tried the following code, i got an exception "NoSuchAlgorithmException : Blowfish algorithm not found"
    try
    SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
    byte[] key = sr.generateSeed(8);
    SecretKeySpec sks1 = new SecretKeySpec(key, "BlowFish");
    SecretKeyFactory skf1 = SecretKeyFactory.getInstance(sks1.getAlgorithm());
    catch()
    This exception occured when i create an instance of SecretKeyFactory.
    I need a code, by which if i give a byte[] (key material ) , i need to get the secretkey.
    The above code works for DES algorithm .
    In Jce,is there a keySpec for BlowFish as we have for DES(DESKeySpec)?
    regards,
    Deepa Raghuraman

  • Invalid Key Specification with DESEde algorithm and SecretKeySpec

    Anyone know why attempting to create a SecretKeySpec with a byte array and the algorithm "DESede" would fail, while passing the same bytes to the DESedeSecretKeySpec constructor works? The exception from the former (see below for relevant snippet) claims that the key specification is invalid. I saw this bug which seems related, but is marked closed, so am not sure what's happening: http://bugs.sun.com/bugdatabase/view_bug.do;jsessionid=1371755199b0c24e4871e29a6028d?bug_id=4364490.
    Some of the stack trace from attempting to use SecretKeySpec:
    Caused by: java.security.spec.InvalidKeySpecException: Inappropriate key specification
         at com.sun.crypto.provider.DESedeKeyFactory.engineGenerateSecret(DashoA13*..)
         at javax.crypto.SecretKeyFactory.generateSecret(DashoA13*..)
         atEdited by: jgold on Jan 21, 2010 8:39 AM

    Please post the code for both and a typical key byte array. You might also want to say which version of Java on which OS.

  • Printer-specific options only on one Mac

    I've got a MacBook and a MacBook Pro, both running 10.5.1, and a Canon MP530 that's shared from an iBook running 10.4.11.
    On the MacBook Pro, the print dialog includes a number of printer-specific options in the pop-up menu-- "Quality & Media", "Color Options", etc. On the MacBook I get only generic options-- "Layout" through "Scheduler", but nothing specific to the printer.
    I can't find any differences in the printer setup between the two Intel Macs. I tried deleting the printer from the MacBook's printer setup and adding it again, but that had no effect.
    Both of the Intel Macs show the correct print driver selected when I look up the printer in System Preferences.
    I also downloaded Canon's latest drivers and installed them on the MacBook, but that didn't make any difference.
    Anyone have an idea why I get such different options on one Mac than I do on the other?

    This may sound ridiculous, but make sure the Canon is designated as the default printer....I had the same issue with a Cannon MP600....
    When I made it the default printer, I got all the options back.
    Go figure...

  • Why general auto key lock option setting could be different?

    why general auto key lock options settings could be different?
    tks a lot

    I've seen this in "demo' units of the iphone. For obvious reasons, demo units don't have those settings so people playing with them in stores can't screw with those settings. I'd bet money you got an iphone with demo software on it...it happens from time to time, although the units are clearly labeled as such. You have two choices to fix this: 1. Take it back to where you got it & exchange for a non-demo unit(recommended), 2. Restore the phone as a "new" device(not from backup) & then re-sync your itunes content.

  • WebServices: BAM-06011: invalid key specification

    I am new to BAM
    I did the following steps:
    1. I created Data object using BAM architect view
    2. Created report using BAM active studio view
    3. Set up the following in weblogic console
    Home >Summary of Deployments >OracleBamAdapter ->oracle.bam.adapter.adc.soap.SOAPConnectionFactory
    4. Created BAM activity sensor for the existing composite
    5. Created BAM sensor action by created BAM connection.
    6. Deployed and ran the test
    7. Seeing the following error iin the logs:
    ===========
    WebServices: BAM-06011: invalid key specification; [Ljava.lang.String;@1bbb270 found
    Unable to obtain resource from class oracle.bam.common.resources.Exceptions using key RowOperation[ Type[UPSERT5:UPSERT] Keys[_SourceSystem,_TargetSystem,_ServiceName,_OperationName,_Context,_InstanceID,_TransactionID,_TransactionNumber] Update Columns[null] Column Values[<_SourceSystem='TEST'>,<_TargetSystem=Siebel>,<_ServiceName='ORDER'>,<_OperationName='GetOrder'>,<_Context=GetOrderComposite>,<_InstanceID='Instanceid123'>,<_TransactionID='TransactionId123'>,<_TransactionNumber='TransactionNumber123'>] ].
    ===========
    Can anybody help how to proceed. I have supplied all the values that are in the Data object. Not sure why I am seeing null pointer and "Update Columns[null] "....
    Your help is greately appreciated.

    Team,
    I have to demo this functionality to upper mgt asap. Do any body has any clue on this?

  • My I Mac not responding to any keys, Except Option, on start-up

    My I Mac, at work, not responding to any keys, Except Option, on start-up.
    While pressing option key, it asks for password. Nobody knows how it came there. The acceptable password at boot disk selection manager is a domain user login password and the user doesn't have permission to change any system preferences.
    We are unable to find the DVD at boot disk selection to boot from the Disc. also none of the startup shorcuts are working.

    Namboo wrote:
    My I Mac, at work, not responding to any keys, Except Option, on start-up.
    While pressing option key, it asks for password. Nobody knows how it came there. The acceptable password at boot disk selection manager is a domain user login password and the user doesn't have permission to change any system preferences.
    We are unable to find the DVD at boot disk selection to boot from the Disc. also none of the startup shorcuts are working.
    Are you aware that this is the Leopard forum?

  • HT4848 What is the "option key" reffered to in these instructions, I don't have a key marked options?

    What is the "option key" referred to in the instructions for using a recovery disc?

    The Option Key (along with Control and Command) will be on keyboards made by Apple and some 3rd party keyboards made specifically for Macs. Other USB keyboards will work but may have Windows-specific markings.
    The key layouts from left to right on Mac keyboards are (bottom row):
    Control - Option - Command - Space Bar - Command - Option - Control
    If you are using a Windows keyboard, the layout is the same but they keys could be marked differently. In other words, the leftmost key will be the Control key when booted into MacOS regardless of what is marked on it for when you are booted into Windows OS.
    Some compact keyboards might eliminate the left or right keys, but there will always be at least one set. For example it could be:
    Control - Option - Command - Space Bar -
    There are also symbols used to describe these keys in support documents.
    ^ is Control
    A stairstep looking symbol is Option
    A cloverleaf looking symbol is Command
    Some people will refer you to the "Apple Key". There is no such thing but it is common for the Command key to be referred to this way as on many Apple keyboards the Apple Character is on that key. It is usually not on 3rd party keyboards, which is why you should always refer to it as the Command key, since referring to it as the Apple key will confuse many users. Apple never refers to this as the "Apple Key".
    Alternative name for Option key is Alt, but again Apple never refers to it as Alt; it is there for Windows/UNIX compatibility.

  • I deleted my SYNC Key and now realilze I want it. How do I reinstall it. The Sync Key under options does not work

    I deleted the Sync Key, I thought it was just a refresh button and was not working. I have now read more about it, and want ot reinstall it, but when I go from tools>options.Sync, I get:
    Incorrect account name or password: Update, reset or unlink
    I have tried all three.
    I know I made the error, but I don't know how to retrieve it. I have not shut my computer down, but I can;t seem to find it in my history either.
    HELP ME PLEASE

    User account – restore missing admin

  • Confirmation control key-Make option

    Hi,
    In the field selction key(define screen layout at docuement level) of docuemnt type MK(Qty contract),I made as optional for confirmation control key .But While creating qty contract,still it is mandatory field for confirmation control key.How to make optional field of confirmation control key   in the contract.
    Can somebody throw light on this,please ?
    Regards,
    Jaheer.

    Hi
    In the field selction key(define screen layout at docuement level) of docuemnt type, you have to check all the feild selection like
    AKTH , ME31 , MKK (Qty Contract) ,if any of the feild selection if the confirmation control is reqired entry ,then while creatiog contract it will reflect,
    Check these feild selection keys if the confirmation control is active, and also check if you have created any new feild selection keys if the confirmation control is active.

  • Changing Enter key (not Return key) to Option?

    I'm left-handed and I use the Illustrator as my main application. I am constantly using the option key in combination with the track pad. Unfortunately, the Option key is on the left side only of MBP's keyboard which causes me to have to contort into impossible, and counter-productive, positions. Can I some how re-map the Enter key to be an Option key like on my G5's keyboard?

    Hi Billy,
    Double Command is great as you seem to already found out. If you have selected 'System' for your remap, make sure that you disable it before OS software updates, i.e. 10.4.8 etc.
    See my Cautionary Tale!
    Have fun!
    Adrian

Maybe you are looking for

  • How to know through back end employee position in Requisition approval

    Hi all, I have one Employee_id ,how to know this employee has a authority to approve the requisition through back end. what is the link between per_all_people_f and PO_POSITION_CONTROLS_all. Thanks

  • Apache - mod_jk - tomcat site filesystem question

    hi all we finished today to set up apache+mod_jk+tomcat togheter we done it because in this way apache will serve static pages and tomcat jsp + servlet right? now, a (maybe stupid) question: how to make apache serve static pages and tomcat jsp & serv

  • Web Dynpro ALV grid column width

    Hi, I have a web dynpro alv grid that has columns titles that are long.  What is the best way of displaying the data without taking up too much space with the titles?  For example is it possible to wrap the title into 2 or 3 rows Thanks, Samir

  • Exposing MDM LOGS as webservices

    Hi Experts, Does anybody knows if it's possible to expose the MDM logs as a webservice or even connect trough any Portal iview on it? Thanks in advance, Armando Martines Neto

  • How to fully remove programs?

    hi all, I've just installed realplayer from their site, and I just thought: how do I remove it? If I ever need to uninstall any program I haven't installed via pacman fully, and the corresponding installer does not have an "uninstall" option, what do