Class SecureKeyManager
- Namespace
- NLightning.Common.Managers
- Assembly
- NLightning.Bolt11.dll
Manages a securely stored private key using protected memory allocation. This class ensures that the private key remains inaccessible from regular memory and is securely wiped when no longer needed.
public static class SecureKeyManager
- Inheritance
-
SecureKeyManager
- Inherited Members
Methods
Dispose()
Releases the private key from secure memory and wipes its contents.
public static void Dispose()
GetPrivateKey()
Retrieves the private key stored in secure memory.
public static byte[] GetPrivateKey()
Returns
- byte[]
The private key as a byte array.
Exceptions
- InvalidOperationException
Thrown if the key is not initialized.
Initialize(byte[])
Initializes the secure key manager with a private key.
public static void Initialize(byte[] privateKey)
Parameters
privateKey
byte[]The private key to store in secure memory.
Exceptions
- InvalidOperationException
Thrown if the key is already initialized or if memory locking fails.