aboutsummaryrefslogtreecommitdiff
path: root/plugins/VNLib.Plugins.Essentials.Accounts
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-05-19 11:43:27 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-05-19 11:43:27 -0400
commit1e8b4296d3a2093dbddcfd8479f162d077606f71 (patch)
tree7207978850fdfb5c005445c3e66deeb55d087c72 /plugins/VNLib.Plugins.Essentials.Accounts
parent34ca3d09a96fb615d00e14abb4a70fe787fe1965 (diff)
refactor: Preparing for WebAuthn and core updates
Diffstat (limited to 'plugins/VNLib.Plugins.Essentials.Accounts')
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoAuthenticatorSelection.cs (renamed from plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoAuthenticatorSelection.cs)8
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoPubkeyAlgorithm.cs37
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegClientData.cs (renamed from plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegClientData.cs)10
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegistrationMessage.cs (renamed from plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegistrationMessage.cs)30
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRelyingParty.cs37
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoUserData.cs54
-rw-r--r--plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/MFAConfig.cs3
7 files changed, 157 insertions, 22 deletions
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoAuthenticatorSelection.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoAuthenticatorSelection.cs
index 6db41af..301113c 100644
--- a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoAuthenticatorSelection.cs
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoAuthenticatorSelection.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2024 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Accounts
@@ -24,14 +24,16 @@
using System.Text.Json.Serialization;
-namespace VNLib.Plugins.Essentials.Accounts.MFA
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
{
- class FidoAuthenticatorSelection
+ internal sealed class FidoAuthenticatorSelection
{
[JsonPropertyName("requireResidentKey")]
public bool RequireResidentKey { get; set; } = false;
+
[JsonPropertyName("authenticatorAttachment")]
public string? AuthenticatorAttachment { get; set; } = "cross-platform";
+
[JsonPropertyName("userVerification")]
public string? UserVerification { get; set; } = "required";
}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoPubkeyAlgorithm.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoPubkeyAlgorithm.cs
new file mode 100644
index 0000000..0bdd563
--- /dev/null
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoPubkeyAlgorithm.cs
@@ -0,0 +1,37 @@
+/*
+* Copyright (c) 2024 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Essentials.Accounts
+* File: FidoPubkeyAlgorithm.cs
+*
+* FidoPubkeyAlgorithm.cs is part of VNLib.Plugins.Essentials.Accounts which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Essentials.Accounts is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License as
+* published by the Free Software Foundation, either version 3 of the
+* License, or (at your option) any later version.
+*
+* VNLib.Plugins.Essentials.Accounts is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see https://www.gnu.org/licenses/.
+*/
+
+using System.Text.Json.Serialization;
+
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
+{
+ internal sealed class FidoPubkeyAlgorithm
+ {
+ [JsonPropertyName("alg")]
+ public int AlgId { get; set; }
+
+ [JsonPropertyName("type")]
+ public string Type { get; set; } = "public-key";
+ }
+}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegClientData.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegClientData.cs
index 1ef7d59..3ad17f3 100644
--- a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegClientData.cs
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegClientData.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2024 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Accounts
@@ -24,16 +24,16 @@
using System.Text.Json.Serialization;
-#nullable enable
-
-namespace VNLib.Plugins.Essentials.Accounts.MFA
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
{
- internal class FidoRegClientData
+ internal sealed class FidoRegClientData
{
[JsonPropertyName("challenge")]
public string? Challenge { get; set; }
+
[JsonPropertyName("origin")]
public string? Origin { get; set; }
+
[JsonPropertyName("type")]
public string? Type { get; set; }
}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegistrationMessage.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegistrationMessage.cs
index e8fbcc4..4dfa036 100644
--- a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/FidoRegistrationMessage.cs
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRegistrationMessage.cs
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2022 Vaughn Nugent
+* Copyright (c) 2024 Vaughn Nugent
*
* Library: VNLib
* Package: VNLib.Plugins.Essentials.Accounts
@@ -24,29 +24,33 @@
using System.Text.Json.Serialization;
-#nullable enable
-
-namespace VNLib.Plugins.Essentials.Accounts.MFA
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
{
/// <summary>
/// Represents a fido device registration message to be sent
/// to a currently signed in user
/// </summary>
- class FidoRegistrationMessage
+ sealed class FidoRegistrationMessage
{
- [JsonPropertyName("id")]
- public string? GuidUserId { get; set; }
[JsonPropertyName("challenge")]
public string? Base64Challenge { get; set; } = null;
+
[JsonPropertyName("timeout")]
public int Timeout { get; set; } = 60000;
- [JsonPropertyName("cose_alg")]
- public int CoseAlgNumber { get; set; }
- [JsonPropertyName("rp_name")]
- public string? SiteName { get; set; }
+
+ [JsonPropertyName("rp")]
+ public FidoRelyingParty RelyingParty { get; set; } = new();
+
[JsonPropertyName("attestation")]
- public string? AttestationType { get; set; } = "none";
+ public string AttestationType { get; set; } = "none";
+
+ [JsonPropertyName("user")]
+ public FidoUserData User { get; set; } = new();
+
+ [JsonPropertyName("pubKeyCredParams")]
+ public FidoPubkeyAlgorithm[]? PubKeyCredParams { get; set; }
+
[JsonPropertyName("authenticatorSelection")]
- public FidoAuthenticatorSelection? AuthSelection { get; set; } = new();
+ public FidoAuthenticatorSelection AuthSelection { get; set; } = new();
}
}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRelyingParty.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRelyingParty.cs
new file mode 100644
index 0000000..d259ac6
--- /dev/null
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoRelyingParty.cs
@@ -0,0 +1,37 @@
+/*
+* Copyright (c) 2024 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Essentials.Accounts
+* File: FidoRelyingParty.cs
+*
+* FidoRelyingParty.cs is part of VNLib.Plugins.Essentials.Accounts which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Essentials.Accounts is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License as
+* published by the Free Software Foundation, either version 3 of the
+* License, or (at your option) any later version.
+*
+* VNLib.Plugins.Essentials.Accounts is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see https://www.gnu.org/licenses/.
+*/
+
+using System.Text.Json.Serialization;
+
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
+{
+ internal sealed class FidoRelyingParty
+ {
+ [JsonPropertyName("id")]
+ public string? Id { get; set; }
+
+ [JsonPropertyName("name")]
+ public string? Name { get; set; }
+ }
+}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoUserData.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoUserData.cs
new file mode 100644
index 0000000..aadef29
--- /dev/null
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/Fido/FidoUserData.cs
@@ -0,0 +1,54 @@
+/*
+* Copyright (c) 2024 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Essentials.Accounts
+* File: FidoUserData.cs
+*
+* FidoUserData.cs is part of VNLib.Plugins.Essentials.Accounts which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Essentials.Accounts is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License as
+* published by the Free Software Foundation, either version 3 of the
+* License, or (at your option) any later version.
+*
+* VNLib.Plugins.Essentials.Accounts is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see https://www.gnu.org/licenses/.
+*/
+
+using System;
+using System.Buffers.Binary;
+using System.Formats.Cbor;
+using System.Text.Json.Serialization;
+
+using VNLib.Hashing.IdentityUtility;
+
+namespace VNLib.Plugins.Essentials.Accounts.MFA.Fido
+{
+ internal sealed class FidoAuthenticatorResponse
+ {
+ [JsonPropertyName("client_data")]
+ public string? Base64ClientDataJson { get; set; }
+
+ [JsonPropertyName("attestation_object")]
+ public string? Base64AttestationObject { get; set; }
+ }
+
+ internal sealed class FidoUserData
+ {
+ [JsonPropertyName("id")]
+ public string? UserId { get; set; }
+
+ [JsonPropertyName("name")]
+ public string? UserName { get; set; }
+
+ [JsonPropertyName("displayName")]
+ public string? DisplayName { get; set; }
+ }
+}
diff --git a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/MFAConfig.cs b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/MFAConfig.cs
index bb86a3f..9dfd183 100644
--- a/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/MFAConfig.cs
+++ b/plugins/VNLib.Plugins.Essentials.Accounts/src/MFA/MFAConfig.cs
@@ -29,9 +29,10 @@ using FluentValidation;
using VNLib.Hashing;
using VNLib.Plugins.Extensions.Loading;
+using VNLib.Plugins.Essentials.Accounts.MFA.Fido;
namespace VNLib.Plugins.Essentials.Accounts.MFA
-{
+{
[ConfigurationName("mfa")]
internal class MFAConfig : IOnConfigValidation