Class LocalKeyStore
Inheritance
System.Object
LocalKeyStore
Assembly: Catalyst.Core.Modules.Keystore.dll
Syntax
public sealed class LocalKeyStore : KeyStoreService, IKeyStore
Constructors
|
Improve this Doc
View Source
LocalKeyStore(IPasswordManager, ICryptoContext, IFileSystem, IHashProvider, IPeerSettings, ILogger)
Declaration
public LocalKeyStore(IPasswordManager passwordManager, ICryptoContext cryptoContext, IFileSystem fileSystem, IHashProvider hashProvider, IPeerSettings peerSettings, ILogger logger)
Parameters
Methods
|
Improve this Doc
View Source
KeyStoreDecrypt(KeyRegistryTypes)
Declaration
public IPrivateKey KeyStoreDecrypt(KeyRegistryTypes keyIdentifier)
Parameters
Returns
|
Improve this Doc
View Source
KeyStoreEncryptAsync(IPrivateKey, KeyRegistryTypes)
Declaration
public Task KeyStoreEncryptAsync(IPrivateKey privateKey, KeyRegistryTypes keyIdentifier)
Parameters
Returns
Type |
Description |
System.Threading.Tasks.Task |
|
|
Improve this Doc
View Source
KeyStoreGenerate(KeyRegistryTypes)
Declaration
public Task<IPrivateKey> KeyStoreGenerate(KeyRegistryTypes keyIdentifier)
Parameters
Returns
Type |
Description |
System.Threading.Tasks.Task<IPrivateKey> |
|
Implements