Ejemplo n.º 1
0
		public byte[] GetMIC (byte[] inMsg, int offset, int len, MessageProp msgProp)
		{
			throw new NotImplementedException ();
		}
Ejemplo n.º 2
0
		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();
 }