public byte[] GetMIC (byte[] inMsg, int offset, int len, MessageProp msgProp) { throw new NotImplementedException (); }
public virtual byte[] GetMIC(byte[] message, int s, int l) { try { MessageProp prop = new MessageProp(0, true); return context.GetMIC(message, s, l, prop); } catch (GSSException) { return null; } }
public byte[] GetMIC(byte[] inMsg, int offset, int len, MessageProp msgProp) { throw new NotImplementedException(); }