Add cipher seeding with Rust SDK encryption to enable cryptographically correct test data generation (#6896)

This commit is contained in:
Mick Letofsky
2026-01-30 13:53:24 +01:00
committed by GitHub
parent 93a28eed40
commit bfc645e1c1
40 changed files with 3245 additions and 48 deletions

View File

@@ -0,0 +1,9 @@
namespace Bit.Seeder.Data.Enums;
/// <summary>
/// Geographic region for company headquarters.
/// </summary>
public enum GeographicRegion
{
NorthAmerica, Europe, AsiaPacific, LatinAmerica, MiddleEast, Africa, Global
}