Export/Import keys using pkcs11interop










0















I'm trying to export/import private & public keys.
According to pkcs11Admin those actions aren't supported currently.



Any idea how to do it?
Relevant attributes for key generation before exporting (CKA_SENSITIVE, CKA_EXTRACTABLE)?
Should I wrap the private key before exporting it?










share|improve this question
























  • I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

    – Maarten Bodewes
    Nov 13 '18 at 12:04






  • 2





    Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

    – jariq
    Nov 14 '18 at 23:34











  • Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

    – tos
    Nov 27 '18 at 6:51
















0















I'm trying to export/import private & public keys.
According to pkcs11Admin those actions aren't supported currently.



Any idea how to do it?
Relevant attributes for key generation before exporting (CKA_SENSITIVE, CKA_EXTRACTABLE)?
Should I wrap the private key before exporting it?










share|improve this question
























  • I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

    – Maarten Bodewes
    Nov 13 '18 at 12:04






  • 2





    Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

    – jariq
    Nov 14 '18 at 23:34











  • Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

    – tos
    Nov 27 '18 at 6:51














0












0








0


0






I'm trying to export/import private & public keys.
According to pkcs11Admin those actions aren't supported currently.



Any idea how to do it?
Relevant attributes for key generation before exporting (CKA_SENSITIVE, CKA_EXTRACTABLE)?
Should I wrap the private key before exporting it?










share|improve this question
















I'm trying to export/import private & public keys.
According to pkcs11Admin those actions aren't supported currently.



Any idea how to do it?
Relevant attributes for key generation before exporting (CKA_SENSITIVE, CKA_EXTRACTABLE)?
Should I wrap the private key before exporting it?







.net cryptography pkcs#11 hsm pkcs11interop






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 '18 at 12:00









Maarten Bodewes

62.3k1080172




62.3k1080172










asked Nov 13 '18 at 9:50









tostos

4




4












  • I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

    – Maarten Bodewes
    Nov 13 '18 at 12:04






  • 2





    Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

    – jariq
    Nov 14 '18 at 23:34











  • Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

    – tos
    Nov 27 '18 at 6:51


















  • I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

    – Maarten Bodewes
    Nov 13 '18 at 12:04






  • 2





    Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

    – jariq
    Nov 14 '18 at 23:34











  • Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

    – tos
    Nov 27 '18 at 6:51

















I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

– Maarten Bodewes
Nov 13 '18 at 12:04





I'd be amazed if you cannot export public keys. Yes, retrieving a wrapped key (one operation, as far as I know) would be the best option. Of course, you'd need to create a wrapping key on the device for which the secret / private key is outside the device for that. Some devices do not allow extraction at all, and some also provide proprietary (backup) options.

– Maarten Bodewes
Nov 13 '18 at 12:04




2




2





Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

– jariq
Nov 14 '18 at 23:34





Pkcs11Admin is GUI application which currently lacks a lot of features :) On the other side Pkcs11Interop is fully featured .NET library that wraps PKCS#11 library provided by your HSM vendor and surely can export and import keys if your HSM supports those operations. If you need more specific answer then please describe your use case in more detail.

– jariq
Nov 14 '18 at 23:34













Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

– tos
Nov 27 '18 at 6:51






Thank You! I managed to import & export keys. In the beginning I didn't find which attributes are mandatory for those operations. The attributes are written in "PKCS #11 v2.20: Cryptographic Token Interface Standard" sections 12.1.2 -12.1.3

– tos
Nov 27 '18 at 6:51













0






active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278185%2fexport-import-keys-using-pkcs11interop%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53278185%2fexport-import-keys-using-pkcs11interop%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20