Table of Contents

Class PdfSignatureVerifyTool

Namespace
LMKit.Agents.Tools.BuiltIn.Document
Assembly
LM-Kit.NET.dll

A built-in tool for verifying the digital signatures of a PDF document.

Validation runs fully offline: document integrity, signer identity against the configured trust anchors, and revocation from material embedded in the signature. Each signature reports the three axes plus a combined Valid / Indeterminate / Invalid verdict.

public sealed class PdfSignatureVerifyTool : IBuiltInTool, ITool, IToolMetadata
Inheritance
PdfSignatureVerifyTool
Implements
Inherited Members

Examples

var tool = new PdfSignatureVerifyTool();
registry.Register(tool);

Properties

Description

Gets a concise description of what the tool does.

InputSchema

Gets the JSON Schema defining the expected input arguments.

Name

Gets the stable, unique identifier for this tool.

Methods

InvokeAsync(string, CancellationToken)

Executes the tool with the specified JSON arguments.

Share