Convert String to SecureString

前端 未结 13 1899
粉色の甜心
粉色の甜心 2020-12-12 15:43

How to convert String to SecureString?

13条回答
  •  借酒劲吻你
    2020-12-12 16:39

    There is also another way to convert between SecureString and String.

    1. String to SecureString

    SecureString theSecureString = new NetworkCredential("", "myPass").SecurePassword;
    

    2. SecureString to String

    string theString = new NetworkCredential("", theSecureString).Password;
    

    Here is the link

提交回复
热议问题