├── .gitignore ├── .nojekyll ├── .well-known └── nostr.json ├── IdGenerator.Sample ├── IdGenerator.Sample.csproj └── Program.cs ├── IdGenerator.sln ├── IdGenerator ├── IdGenerator.csproj ├── Obfuscat │ ├── Base62.cs │ ├── Feistel.cs │ └── IdObfuscator.cs └── Snowflake │ ├── DisposableAction.cs │ ├── IdWorker.cs │ └── TimeExtensions.cs ├── README-ZH.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.well-known/nostr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/.well-known/nostr.json -------------------------------------------------------------------------------- /IdGenerator.Sample/IdGenerator.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator.Sample/IdGenerator.Sample.csproj -------------------------------------------------------------------------------- /IdGenerator.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator.Sample/Program.cs -------------------------------------------------------------------------------- /IdGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator.sln -------------------------------------------------------------------------------- /IdGenerator/IdGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/IdGenerator.csproj -------------------------------------------------------------------------------- /IdGenerator/Obfuscat/Base62.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Obfuscat/Base62.cs -------------------------------------------------------------------------------- /IdGenerator/Obfuscat/Feistel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Obfuscat/Feistel.cs -------------------------------------------------------------------------------- /IdGenerator/Obfuscat/IdObfuscator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Obfuscat/IdObfuscator.cs -------------------------------------------------------------------------------- /IdGenerator/Snowflake/DisposableAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Snowflake/DisposableAction.cs -------------------------------------------------------------------------------- /IdGenerator/Snowflake/IdWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Snowflake/IdWorker.cs -------------------------------------------------------------------------------- /IdGenerator/Snowflake/TimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/IdGenerator/Snowflake/TimeExtensions.cs -------------------------------------------------------------------------------- /README-ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/README-ZH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/choby/IdGenerator/HEAD/README.md --------------------------------------------------------------------------------