Initial commit: BARON SSO 샘플 (WebView OIDC PKCE 인증 라이브러리 + 데모 앱)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
18
BaronSoftware.SSO/GlobalConfigs.cs
Normal file
18
BaronSoftware.SSO/GlobalConfigs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.IO;
|
||||
|
||||
namespace BaronSoftware.SSO
|
||||
{
|
||||
internal static class GlobalConfigs
|
||||
{
|
||||
|
||||
internal static readonly string CenterTanant_UUID = "5530ca6e-c5e6-4bf0-84d6-76c6a8fb70ee";
|
||||
internal static readonly string FamilyTanant_UUID = "038326b6-954a-48a7-a85f-efd83f62b82a";
|
||||
|
||||
/// <summary>OIDC Issuer. Discovery 문서는 {Authority}/.well-known/openid-configuration 입니다.</summary>
|
||||
internal static string SsoUri = "https://sso.hmac.kr/oidc";
|
||||
internal static string SsoDiscoveryUri => $"{SsoUri.TrimEnd('/')}/.well-known/openid-configuration";
|
||||
|
||||
public readonly static string RegPath = $@"HKEY_CURRENT_USER\Software\Baron\";
|
||||
public static readonly string SsoFilePath = @$"{Path.GetTempPath()}\.baron\baronsso.dat";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user