avancement planning
This commit is contained in:
+15
-2
@@ -1,10 +1,23 @@
|
||||
import type { SignedEntity, Signer, VerificationPolicy } from './shared.types';
|
||||
import type { TrustMaterial } from './trust';
|
||||
export type VerifierOptions = {
|
||||
/**
|
||||
* Configuration options for the verifier.
|
||||
*
|
||||
* @public
|
||||
*/
|
||||
export interface VerifierOptions {
|
||||
/** Minimum number of transparency log entries required for verification */
|
||||
tlogThreshold?: number;
|
||||
/** Minimum number of certificate transparency log entries required */
|
||||
ctlogThreshold?: number;
|
||||
/**
|
||||
* Minimum number of timestamp authority timestamps required for verification
|
||||
* @deprecated Use timestampThreshold instead
|
||||
*/
|
||||
tsaThreshold?: number;
|
||||
};
|
||||
/** Minimum number of timestamps required for verification */
|
||||
timestampThreshold?: number;
|
||||
}
|
||||
export declare class Verifier {
|
||||
private trustMaterial;
|
||||
private options;
|
||||
|
||||
Reference in New Issue
Block a user