Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ITrustAnchors.cs « Mono.Security.X509 « Mono.Security « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3cadbec174f0cf7cf3a25d80fa622aaba6cec0a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//
// ITrustAnchors.cs: Trust Anchors Interface
//
// Author:
//	Sebastien Pouliot (spouliot@motus.com)
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
//

using System;

namespace Mono.Security.X509 {

	public interface ITrustAnchors
	{
		X509CertificateCollection Anchors { get; }
	}
}