You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently connection string only support key as pure string or byte array. But normally passwords are (and should) be saved in a SecureString. Can you add support for it?
The text was updated successfully, but these errors were encountered:
"But normally passwords are (and should) be saved in a SecureString."
This is not correct. SecureString is not actually secure, has some well known fundamental issues, and in fact it's even not recommended and actually planned to be marked as obsolete and eventually removed entirely from the BCL. See the runtime design doc here: dotnet/designs#147. I don't think it makes sense to add support for this as it would just be more work to then incentivize users to use a type that should just never be used in the first place.
Currently connection string only support key as pure string or byte array. But normally passwords are (and should) be saved in a
SecureString
. Can you add support for it?The text was updated successfully, but these errors were encountered: