Interface IAsyncNonceStore
External asynchronous store that can store cryptographic nonces for certificate authentication.
Assembly: Lacuna.Pki.dll
Syntax
public interface IAsyncNonceStore
Methods
CheckAndRemoveAsync(Byte[], CancellationToken)
Check that the given nonce is in the store and remove it if so.
Declaration
Task<bool> CheckAndRemoveAsync(byte[] nonce, CancellationToken cancellationToken = default(CancellationToken))
Parameters
Returns
StoreAsync(Byte[], CancellationToken)
Store a cryptographic nonce.
Declaration
Task StoreAsync(byte[] nonce, CancellationToken cancellationToken = default(CancellationToken))
Parameters
Returns