{"id":20566268,"url":"https://github.com/telkomdev/netcrypsi","last_synced_at":"2025-12-06T22:01:08.602Z","repository":{"id":65396310,"uuid":"584488513","full_name":"telkomdev/NetCrypsi","owner":"telkomdev","description":"Custom crypto utility that wraps the DotNet cryptography API to make life easier (Digest, AES, HMAC, RSA, RSA Digital Signature)","archived":false,"fork":false,"pushed_at":"2023-01-25T06:53:04.000Z","size":78,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-06T08:57:46.910Z","etag":null,"topics":["aes","cryptography","dotnet","rsa"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/telkomdev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2023-01-02T17:56:00.000Z","updated_at":"2023-11-19T16:44:18.000Z","dependencies_parsed_at":"2023-02-12T09:30:45.993Z","dependency_job_id":null,"html_url":"https://github.com/telkomdev/NetCrypsi","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/telkomdev/NetCrypsi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telkomdev%2FNetCrypsi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telkomdev%2FNetCrypsi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telkomdev%2FNetCrypsi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telkomdev%2FNetCrypsi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/telkomdev","download_url":"https://codeload.github.com/telkomdev/NetCrypsi/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/telkomdev%2FNetCrypsi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27553930,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-06T02:00:06.463Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aes","cryptography","dotnet","rsa"],"created_at":"2024-11-16T04:40:50.729Z","updated_at":"2025-12-06T22:01:08.561Z","avatar_url":"https://github.com/telkomdev.png","language":"C#","readme":"## NetCrypsi (crypsi for DotNet C#)\n\nCustom crypto utility that wraps the DotNet `cryptography` API to make life easier\n\n[![NetCrypsi CI](https://github.com/telkomdev/NetCrypsi/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/telkomdev/NetCrypsi/actions/workflows/ci.yml)\n\n### NetCrypsi is compatible with each other with the following libraries\n- NodeJs https://github.com/telkomdev/crypsi\n- Python https://github.com/telkomdev/pycrypsi\n- Golang https://github.com/telkomdev/go-crypsi\n- Java/JVM https://github.com/telkomdev/jcrypsi\n- Javascript (React and Browser) https://github.com/telkomdev/crypsi.js\n\n### Features\n- Asymmetric encryption with RSA\n- Generate RSA private and public key\n- Digital Signature with RSA private and public key using PSS\n- Symmetric encryption with AES\n- Message authentication code with HMAC\n- Generate Hash with Common DIGEST Algorithm\n\n### Add `NetCrypsi` to your project\n\nCreate new Solution\n```shell\n$ mkdir MyApp\n$ cd MyApp/\n$ dotnet new sln -n MyApp\nThe template \"Solution File\" was created successfully.\n```\n\nCreate example console app inside `MyApp Solution`\n```shell\n$ dotnet new console -o MyApp.App\n```\n\nAdd `MyApp.App` to `MyApp Solution`\n```shell\n$ dotnet sln MyApp.sln add MyApp.App/MyApp.App.csproj\n```\n\nClone `NetCrypsi`\n```shell\n$ git clone https://github.com/telkomdev/NetCrypsi.git\n```\n\nAdd `NetCrypsi.Lib` to `MyApp Solution`\n```shell\n$ dotnet sln MyApp.sln add NetCrypsi/NetCrypsi.Lib/NetCrypsi.Lib.csproj\n```\n\nAdd Clone `NetCrypsi` to `MyApp.App` as a reference\n```shell\n$ dotnet add MyApp.App/MyApp.App.csproj reference NetCrypsi/NetCrypsi.Lib/NetCrypsi.Lib.csproj\n```\n\nCheck MyApp reference\n```shell\n$ dotnet list MyApp.App/MyApp.App.csproj reference\nProject reference(s)\n--------------------\n..\\NetCrypsi\\NetCrypsi.Lib\\NetCrypsi.Lib.csproj\n```\n\nEdit `MyApp.App/Programm.cs`\n```csharp\nusing System;\nusing System.Text;\nusing NetCrypsi.Lib;\n\n// See https://aka.ms/new-console-template for more information\nConsole.WriteLine(\"Hello, World!\");\n\nConsole.WriteLine(Digestx.MD5Hex(Encoding.UTF8.GetBytes(\"wuriyanto\")));\n```\n\nRun `MyApp.App`\n```shell\n$ cd MyApp.App/\n$ dotnet run\nHello, World!\n60E1BC04FA194A343B50CE67F4AFCFF8\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelkomdev%2Fnetcrypsi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftelkomdev%2Fnetcrypsi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftelkomdev%2Fnetcrypsi/lists"}