1
0
mirror of https://github.com/bitwarden/server synced 2025-12-15 15:53:59 +00:00

Wire up crypto logic for sharing org key

This commit is contained in:
Hinton
2025-07-31 14:48:48 +02:00
parent 75f11f68ac
commit 3132e09e21
9 changed files with 133 additions and 95 deletions

View File

@@ -5,15 +5,6 @@
/// </summary>
public static class RustSdkServiceFactory
{
/// <summary>
/// Creates a new instance of the Rust SDK service
/// </summary>
/// <returns>A new IRustSdkService instance</returns>
public static RustSdkService Create()
{
return new RustSdkService();
}
/// <summary>
/// Creates a singleton instance of the Rust SDK service (thread-safe)
/// </summary>
@@ -25,6 +16,6 @@ public static class RustSdkServiceFactory
private static class SingletonHolder
{
internal static readonly RustSdkService Instance = new RustSdkService();
internal static readonly RustSdkService Instance = new();
}
}