-
Notifications
You must be signed in to change notification settings - Fork 374
Deprecate Kerberos API and remove tests #5476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
8cef943
c5334c9
e5308ab
fc02d18
f5dda2a
d8cd795
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.ComponentModel; | ||
|
||
namespace Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos | ||
{ | ||
/// <summary> | ||
/// Previously authenticated logon data used by a security principal to establish its own identity, | ||
/// such as a password, or a Kerberos protocol ticket. | ||
/// </summary> | ||
[Obsolete] | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
public abstract class Credential | ||
{ | ||
internal abstract CredentialHandle Structify(); | ||
|
||
/// <summary> | ||
/// Create a new <see cref="Credential"/> object. | ||
|
@@ -22,10 +26,7 @@ public static Credential Current() | |
|
||
private class CurrentCredential : Credential | ||
{ | ||
internal unsafe override CredentialHandle Structify() | ||
{ | ||
return new CredentialHandle((void*)0); | ||
} | ||
|
||
} | ||
Comment on lines
27
to
30
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Empty class body should be removed or documented. Consider adding a comment explaining why this class remains or remove it entirely if no longer needed. Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||
} | ||
} |
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.