| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // X509BasicConstraintsExtension.cs - System.Security.Cryptography.X509BasicConstraintsExtension
- //
- // Author:
- // Sebastien Pouliot ([email protected])
- //
- // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
- //
- #if NET_1_2
- using System;
- namespace System.Security.Cryptography.X509Certificates {
- // Note: Match the definition of framework version 1.2.3400.0 on http://longhorn.msdn.microsoft.com
- public sealed class X509BasicConstraintsExtension : X509Extension {
- public X509BasicConstraintsExtension () {}
- public bool CertificateAuthority {
- get { return false; }
- }
- public bool HasPathLengthConstraint {
- get { return false; }
- }
- public int PathLengthConstraint {
- get { return 0; }
- }
- }
- }
- #endif
|