5 lines
260 B
TypeScript
5 lines
260 B
TypeScript
|
/// <reference types="node" />
|
||
|
import { RFC3161Timestamp } from '@sigstore/core';
|
||
|
import { CertAuthority } from '../trust';
|
||
|
export declare function verifyRFC3161Timestamp(timestamp: RFC3161Timestamp, data: Buffer, timestampAuthorities: CertAuthority[]): void;
|