Add a TrustSignature packet to the signature. The values for depth and trust are largely installation dependent but there are some guidelines in RFC 4880 - 5.2.3.13.

Namespace: Org.BouncyCastle.Bcpg.OpenPgp
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public void SetTrust(
	bool isCritical,
	int depth,
	int trustAmount
)
Visual Basic
Public Sub SetTrust ( _
	isCritical As Boolean, _
	depth As Integer, _
	trustAmount As Integer _
)
Visual C++
public:
void SetTrust(
	bool isCritical, 
	int depth, 
	int trustAmount
)

Parameters

isCritical
Type: System..::..Boolean
true if the packet is critical.
depth
Type: System..::..Int32
depth level.
trustAmount
Type: System..::..Int32
trust amount.

See Also