Class SecureStringExtensions
Extensions for a SecureString.
Inherited Members
Namespace: Ipfs.Engine.Cryptography
Assembly: Ipfs.Engine.dll
Syntax
public static class SecureStringExtensions
Methods
| Improve this Doc View SourceUseSecretBytes(SecureString, Action<Byte[]>)
Use the plain bytes of a SecureString.
Declaration
public static void UseSecretBytes(this SecureString s, Action<byte[]> action)
Parameters
Type | Name | Description |
---|---|---|
SecureString | s | The secure string to access. |
Action<Byte[]> | action | A function to call with the plain bytes. |