4 overrides of GetMIC
System.Net.Security (4)
System\Net\NegotiateAuthenticationPal.ManagedNtlm.cs (1)
751public override void GetMIC(ReadOnlySpan<byte> message, IBufferWriter<byte> signature)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (1)
444public override void GetMIC(ReadOnlySpan<byte> message, IBufferWriter<byte> signature)
System\Net\NegotiateAuthenticationPal.Unix.cs (1)
422public override unsafe void GetMIC(ReadOnlySpan<byte> message, IBufferWriter<byte> signature)
System\Net\NegotiateAuthenticationPal.Unsupported.cs (1)
55public override void GetMIC(ReadOnlySpan<byte> message, IBufferWriter<byte> signature) => throw new InvalidOperationException();
3 references to GetMIC
System.Net.Security (3)
System\Net\NegotiateAuthenticationPal.ManagedSpnego.cs (2)
350_mechanism.GetMIC(_spnegoMechList, micBuffer); 451_mechanism.GetMIC(message, signature);
System\Net\Security\NegotiateAuthentication.cs (1)
376_pal.GetMIC(message, signatureWriter);