{"id":15410246,"url":"https://github.com/hmbsbige/cryptobase","last_synced_at":"2025-04-14T16:16:49.531Z","repository":{"id":39656991,"uuid":"307370905","full_name":"HMBSbige/CryptoBase","owner":"HMBSbige","description":"A fast crypto library for .NET","archived":false,"fork":false,"pushed_at":"2024-10-17T19:55:11.000Z","size":1456,"stargazers_count":25,"open_issues_count":9,"forks_count":3,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-29T23:40:20.362Z","etag":null,"topics":["aes","base32","chacha20","chacha20-poly1305","crc32","cryptography","hex","hkdf","hmac","rc4","salsa20","sm3","sm4","xchacha20","xchacha20-poly1305","xsalsa20"],"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/HMBSbige.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-10-26T12:51:03.000Z","updated_at":"2024-09-27T08:03:45.000Z","dependencies_parsed_at":"2023-02-12T07:00:33.157Z","dependency_job_id":"50b4e21d-84b0-4612-a443-0a846621853e","html_url":"https://github.com/HMBSbige/CryptoBase","commit_stats":{"total_commits":328,"total_committers":4,"mean_commits":82.0,"dds":"0.18597560975609762","last_synced_commit":"964cbcdb73b393a13a8db8235ef63245d059e917"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HMBSbige%2FCryptoBase","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HMBSbige%2FCryptoBase/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HMBSbige%2FCryptoBase/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HMBSbige%2FCryptoBase/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HMBSbige","download_url":"https://codeload.github.com/HMBSbige/CryptoBase/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245972665,"owners_count":20702721,"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","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","base32","chacha20","chacha20-poly1305","crc32","cryptography","hex","hkdf","hmac","rc4","salsa20","sm3","sm4","xchacha20","xchacha20-poly1305","xsalsa20"],"created_at":"2024-10-01T16:43:41.163Z","updated_at":"2025-03-30T03:31:47.648Z","avatar_url":"https://github.com/HMBSbige.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CryptoBase\nChannel | Status\n-|-\nCI | [![CI](https://github.com/HMBSbige/CryptoBase/workflows/CI/badge.svg)](https://github.com/HMBSbige/CryptoBase/actions)\nCryptoBase | [![NuGet.org](https://img.shields.io/nuget/v/CryptoBase.svg?logo=nuget)](https://www.nuget.org/packages/CryptoBase/)\nCryptoBase.Abstractions | [![NuGet.org](https://img.shields.io/nuget/v/CryptoBase.Abstractions.svg?logo=nuget)](https://www.nuget.org/packages/CryptoBase.Abstractions/)\nCryptoBase.BouncyCastle | [![NuGet.org](https://img.shields.io/nuget/v/CryptoBase.BouncyCastle.svg?logo=nuget)](https://www.nuget.org/packages/CryptoBase.BouncyCastle/)\n\nA fast crypto library for .NET\n\n[Wiki](https://github.com/HMBSbige/CryptoBase/wiki)\n\n## Status\n\n| Icon | Description |\n|:----:|-------------|\n⚠️ | Pending\n⏳ | Underway\n✅ | Done\n\n### Digest algorithms\n\n| Digests | Status |\n| ------- |:------:|\nBlake3 | ⏳ |\nCRC-32 | ✅ |\nCRC-32C | ✅ |\nMD5 | ✅ |\nSHA1 | ✅ |\nSHA224 | ✅ |\nSHA256 | ✅ |\nSHA384 | ✅ |\nSHA512 | ✅ |\nSM3 | ✅ |\n\n### Symmetric-key algorithms\n#### Stream ciphers\n\n| Ciphers | Status |\n| ------- |:------:|\nChaCha20(IETF 7539) | ✅ |\nChaCha20(Original) | ✅ |\nRC4 | ✅ |\nSalsa20 | ✅ |\nXChaCha20 | ✅ |\nXSalsa20 | ✅ |\n\n#### Block ciphers\n\n| Ciphers | Status |\n| ------- |:------:|\nAES | ✅ |\nSM4 | ✅ |\n\n##### Block cipher modes\n\n* ✅ CBC\n* ✅ CFB128(Stream)\n* ✅ CTR128(Stream)\n\n#### Authenticated encryption algorithms\n\n| Ciphers | Status |\n| ------- |:------:|\nAES-GCM | ✅ |\nChaCha20Poly1305 | ✅ |\nSM4-GCM | ✅ |\nXChaCha20Poly1305 | ✅ |\n\n### Asymmetric cryptography\n\n| Ciphers | Status |\n| ------- |:------:|\nRSA | ⏳ |\nCurve25519 | ⏳ |\nEd25519 | ⏳ |\nSM2 | ⏳ |\nSM9 | ⏳ |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmbsbige%2Fcryptobase","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhmbsbige%2Fcryptobase","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhmbsbige%2Fcryptobase/lists"}