{"id":28295487,"url":"https://github.com/cryptic-wizard/hex-converter","last_synced_at":"2026-05-09T00:13:39.424Z","repository":{"id":65376667,"uuid":"415349943","full_name":"cryptic-wizard/hex-converter","owner":"cryptic-wizard","description":"A fast hex converter utility using dictionaries","archived":false,"fork":false,"pushed_at":"2022-08-31T03:16:18.000Z","size":71,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-29T14:38:06.631Z","etag":null,"topics":["dotnet","dotnet-core","gherkin","hex","hexadecimal","nuget","specflow"],"latest_commit_sha":null,"homepage":"https://www.nuget.org/packages/CrypticWizard.HexConverter","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/cryptic-wizard.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-10-09T15:38:59.000Z","updated_at":"2021-10-12T03:55:41.000Z","dependencies_parsed_at":"2023-01-20T08:30:27.865Z","dependency_job_id":null,"html_url":"https://github.com/cryptic-wizard/hex-converter","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/cryptic-wizard/hex-converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptic-wizard%2Fhex-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptic-wizard%2Fhex-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptic-wizard%2Fhex-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptic-wizard%2Fhex-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cryptic-wizard","download_url":"https://codeload.github.com/cryptic-wizard/hex-converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cryptic-wizard%2Fhex-converter/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259793593,"owners_count":22912141,"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":["dotnet","dotnet-core","gherkin","hex","hexadecimal","nuget","specflow"],"created_at":"2025-05-22T14:17:38.078Z","updated_at":"2026-05-09T00:13:34.380Z","avatar_url":"https://github.com/cryptic-wizard.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# hex-converter\n[![nuget](https://img.shields.io/badge/nuget-v0.2.0-blue)](https://www.nuget.org/packages/CrypticWizard.HexConverter)\n## Description\n* A hex converter utility using dictionaries\n\n## Tests\n[![.NET 6.0](https://github.com/cryptic-wizard/hex-converter/actions/workflows/dotnet.yml/badge.svg)](https://github.com/cryptic-wizard/hex-converter/actions/workflows/dotnet.yml)\n\n[![.NET Core 3.1](https://github.com/cryptic-wizard/hex-converter/actions/workflows/dotnetcore.yml/badge.svg)](https://github.com/cryptic-wizard/hex-converter/actions/workflows/dotnetcore.yml)\n\n[![Nuget Publish](https://github.com/cryptic-wizard/hex-converter/actions/workflows/nuget.yml/badge.svg)](https://github.com/cryptic-wizard/hex-converter/actions/workflows/nuget.yml)\n\n## Usage\n### Install Package\n```Text\ndotnet add package CrypticWizard.HexConverter\n```\n```xml\n\u003cPackageReference Include=\"CrypticWizard.HexConverter\" Version=\"0.2.0\"/\u003e\n```\n\n### Include Package:\n```C#\nusing CrypticWizard.HexConverter;\n```\n\n### GetHexString( byte[] )\n```C#\nbyte[] byteArray = { 42, 84, 255, 0 };\nstring hex = HexConverter.GetHexString(byteArray);\n```\n```Text\n\"2A54FF00\"\n```\n\n### GetHexArray( byte[] )\n```C#\nbyte[] byteArray = { 42, 84, 255, 0 };\nstring[] hexArray = HexConverter.GetHexArray(byteArray);\n```\n```Text\n{ \"2A\", \"54\", \"FF\", \"00\" }\n```\n\n### GetHexList( byte[] )\n```C#\nbyte[] byteArray = { 42, 84, 255, 0 };\nList\u003cstring\u003e hexList = HexConverter.GetHexList(byteArray);\n```\n```Text\n{ \"2A\", \"54\", \"FF\", \"00\" }\n```\n\n### GetBytes ( string )\n```C#\nstring hex = { \"2A54FF00\" };\nbyte[] bytes = HexConverter.GetBytes(hex);\n```\n```Text\n{ 2A, 54, FF, 00 }\n```\n\n### GetBytes ( string[] )\n```C#\nstring[] hexArray = { \"2A\", \"54\", \"FF\", \"00\" };\nbyte[] bytes = HexConverter.GetBytes(hexArray);\n```\n```Text\n{ 2A, 54, FF, 00 }\n```\n\n### GetBytes ( List\\\u003cstring\u003e )\n```C#\nList\u003cstring\u003e hexList = new List\u003cstring\u003e { \"2A\", \"54\", \"FF\", \"00\" };\nbyte[] bytes = HexConverter.GetBytes(hexList);\n```\n```Text\n{ 2A, 54, FF, 00 }\n```\n\n## Features\n### Recently Added\nv0.2.0\n```C#\nGetHexString( byte[] ) \u003c-- GetHex( byte[] )\n```\nv0.1.1\n```C#\nGetHex( byte[] )\nGetHexArray( byte[] )\nGetHexList( byte[] )\nGetBytes( string )\nGetBytes( string[] )\nGetBytes( List\u003cstring\u003e )\n```\n### Planned Features\n\n## Tools\n* [Visual Studio](https://visualstudio.microsoft.com/vs/)\n* [NUnit 3](https://nunit.org/)\n* [SpecFlow](https://specflow.org/tools/specflow/)\n* [SpecFlow+ LivingDoc](https://specflow.org/tools/living-doc/)\n* [Run SpecFlow Tests](https://github.com/marketplace/actions/run-specflow-tests)\n\n## License\n* [MIT License](https://github.com/cryptic-wizard/hex-converter/blob/main/LICENSE.md)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptic-wizard%2Fhex-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcryptic-wizard%2Fhex-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcryptic-wizard%2Fhex-converter/lists"}