1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- namespace SMBLibrary.Authentication.GSSAPI
- {
- public interface IGSSMechanism
- {
-
-
-
- NTStatus AcceptSecurityContext(ref object context, byte[] inputToken, out byte[] outputToken);
-
-
-
- bool DeleteSecurityContext(ref object context);
-
-
-
-
- object GetContextAttribute(object context, GSSAttributeName attributeName);
- byte[] Identifier
- {
- get;
- }
- }
- }
|