1 using System;
2 
3 namespace Novell.Directory.Ldap
4 {
5 	public enum AuthenticationTypes
6 	{
7 		Anonymous = 16,
8 		Delegation = 256,
9 	    Encryption = 2,
10 	    FastBind = 32,
11 	    None = 0,
12 	    ReadonlyServer = 4,
13 	    Sealing = 128,
14 	    Secure = 1,
15 	    SecureSocketsLayer = 2,
16 	    ServerBind = 512,
17 	    Signing = 64
18 	}
19 }
20