"Security.SecureString" for .NET 1.1 ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike McGuire

    "Security.SecureString" for .NET 1.1 ?

    I currently have a .NET 2.0 Application that uses "Security.Secur eString" to securly pass a password to the process that I am starting within the app. I want to create something similar for a few of our web servers, but the web team does not want to install .NET 2.0 on the servers

    Is there anything similar to "Security.Secur eString" for .NET 1.1?

    Mike
  • =?Utf-8?B?ZG90TmV0RGF2ZQ==?=

    #2
    RE: "Security. SecureString&qu ot; for .NET 1.1 ?

    There is nothing built into 1.1. What is the issue installing 2.0 on the
    servers? It won't impact 1.1 applications.

    David

    =============== =============== ========
    David McCarter [Microsoft MVP]
    Improving Code Quality... One Developer at a Time

    David McCarter''''s .NET Coding Standards available at:



    "Mike McGuire" wrote:
    I currently have a .NET 2.0 Application that uses "Security.Secur eString" to securly pass a password to the process that I am starting within the app. I want to create something similar for a few of our web servers, but the web team does not want to install .NET 2.0 on the servers
    >
    Is there anything similar to "Security.Secur eString" for .NET 1

    Comment

    • kimiraikkonen

      #3
      Re: "Security. SecureString&qu ot; for .NET 1.1 ?

      On Oct 31, 6:21 pm, "Mike McGuire"
      <mkmcg...@rockd ontspammewellco llins.comwrote:
      I currently have a .NET 2.0 Application that uses "Security.Secur eString"to securly pass a password to the process that I am starting within the app.  I want to create something similar for a few of our web servers, but the web team does not want to install .NET 2.0 on the servers
      >
      Is there anything similar to "Security.Secur eString" for .NET 1.1?
      >
      Mike
      I'm afraid native SecureString base class is supported since version
      2.0.

      See here:
      Represents text that should be kept confidential, such as by deleting it from computer memory when no longer needed. This class cannot be inherited.


      Onur Güzel

      Comment

      Working...