Show / Hide Table of Contents

Interface INonceStore

External store that can store cryptographic nonces for certificate authentication.

Namespace: Lacuna.Pki.Stores
Assembly: Lacuna.Pki.dll
Syntax
public interface INonceStore

Methods

CheckAndRemove(Byte[])

Check that the given nonce is in the store and remove it if so.

Declaration
bool CheckAndRemove(byte[] nonce)
Parameters
Type Name Description
Byte[] nonce

Nonce to search for, a 16-byte byte array.

Returns
Type Description
Boolean

True if the nonce is found, false otherwise.

Store(Byte[])

Store a cryptographic nonce.

Declaration
void Store(byte[] nonce)
Parameters
Type Name Description
Byte[] nonce

A 16-byte byte array.

Back to top Copyright © 2015-2020 Lacuna Software