Manage and Store Keys

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Manage and Store Keys

    I'm using and overloaded RSACryptoServiceProvider rsa =
    RSACryptoServiceProvider(CspParameters cp) indicating the container name
    through cp.KeyContainerName property, but I don't understand what
    different make to stablish PersistKeyInCsp option to true and how to
    identify if the container already exist or the constructor is creating a
    new one pair of keys. Does anybody have documentation about managing and
    storing key pair.

    Any help will be appreciated,

    Johanna Espinosa L.

    *** Sent via Devdex [url]http://www.devdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Johanna Espinosa Guest

  2. Similar Questions and Discussions

    1. Determining all shortcut keys in use (including Function keys)?
      I'm creating a Windows Acrobat 8 plug-in and would like to know how to find all the current shortcut keys. The Acrobat 8 SDK's Developing Plug-ins...
    2. how do I manage all these instances?
      is there an easy way to manage all your instances, we have 6 instances and if I need to add a dsn/ mapping / verity / cfx tag do I have to set this...
    3. Manage databases
      i am trying to contact databases from flash fortunately i can, but what i'd like to do is a member login using a database, i am using some asp...
    4. Manage effects
      Hello, i have a little problem with fireworks MX. I had created some effects and given them a special name so that i can make an effect by clicking...
    5. #21788 [Sus->WFx]: array_multisort() changes array keys unexpectedly given numeric strings as keys
      ID: 21788 Updated by: sniper@php.net Reported By: jon at inet-specialists dot com -Status: Suspended +Status: ...
  3. #2

    Default Re: Manage and Store Keys

    I think this article will help you out with these topics.

    [url]http://www.jensign.com/JavaScience/dotnet/keyinfo/[/url]



    Hopefully this will solve most of your doubts. However if you have any
    further question please don't be afraid to ask.



    Note: Before calling the RSACryptoServiceProvider constructor with the
    CspParameters instance, you should set the Flags property with one of these
    two values:

    UseMachineKeyStore or UseDefaultKeyContainer and set the KeyContainerName
    value as well.


    --
    Hernan de Lahitte
    Lagash Systems S.A.
    [url]http://weblogs.asp.net/hernandl[/url]


    This posting is provided "AS IS" with no warranties, and confers no rights.

    "Johanna Espinosa" <papillongema@hotmail.com> wrote in message
    news:e97wIC%23VEHA.584@TK2MSFTNGP09.phx.gbl...
    > I'm using and overloaded RSACryptoServiceProvider rsa =
    > RSACryptoServiceProvider(CspParameters cp) indicating the container name
    > through cp.KeyContainerName property, but I don't understand what
    > different make to stablish PersistKeyInCsp option to true and how to
    > identify if the container already exist or the constructor is creating a
    > new one pair of keys. Does anybody have documentation about managing and
    > storing key pair.
    >
    > Any help will be appreciated,
    >
    > Johanna Espinosa L.
    >
    > *** Sent via Devdex [url]http://www.devdex.com[/url] ***
    > Don't just participate in USENET...get rewarded for it!

    Hernan de Lahitte Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139