{"id":19484900,"url":"https://github.com/omiyagames/omiya-games-cryptography","last_synced_at":"2026-01-26T03:04:43.652Z","repository":{"id":92285921,"uuid":"252055120","full_name":"OmiyaGames/omiya-games-cryptography","owner":"OmiyaGames","description":"Unity package containig a collection of cryptography-related tools.","archived":false,"fork":false,"pushed_at":"2024-09-03T20:59:58.000Z","size":1889,"stargazers_count":3,"open_issues_count":3,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-11-10T17:46:00.315Z","etag":null,"topics":["cryptography","omiya-games","openupm","unity","unity-asset","unity-editor","unity-scripts","unity2d","unity3d"],"latest_commit_sha":null,"homepage":"https://openupm.com/packages/com.omiyagames.cryptography/","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/OmiyaGames.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":"omiyagames","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2020-04-01T02:50:02.000Z","updated_at":"2022-04-29T12:36:36.000Z","dependencies_parsed_at":"2023-06-08T06:45:59.612Z","dependency_job_id":null,"html_url":"https://github.com/OmiyaGames/omiya-games-cryptography","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":"OmiyaGames/template-unity-package","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OmiyaGames%2Fomiya-games-cryptography","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OmiyaGames%2Fomiya-games-cryptography/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OmiyaGames%2Fomiya-games-cryptography/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OmiyaGames%2Fomiya-games-cryptography/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OmiyaGames","download_url":"https://codeload.github.com/OmiyaGames/omiya-games-cryptography/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":224009870,"owners_count":17240636,"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":["cryptography","omiya-games","openupm","unity","unity-asset","unity-editor","unity-scripts","unity2d","unity3d"],"created_at":"2024-11-10T20:24:25.480Z","updated_at":"2026-01-26T03:04:38.630Z","avatar_url":"https://github.com/OmiyaGames.png","language":"C#","funding_links":["https://ko-fi.com/omiyagames","https://ko-fi.com/I3I51KS8F"],"categories":[],"sub_categories":[],"readme":"# [Omiya Games](https://www.omiyagames.com/) - Cryptography\n\n[![openupm](https://img.shields.io/npm/v/com.omiyagames.cryptography?label=openupm\u0026registry_uri=https://package.openupm.com)](https://openupm.com/packages/com.omiyagames.cryptography/) [![Documentation](https://github.com/OmiyaGames/omiya-games-cryptography/workflows/Host%20DocFX%20Documentation/badge.svg)](https://omiyagames.github.io/omiya-games-cryptography/) [![ko-fi](https://www.ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/I3I51KS8F)\n\nA collection of tools to encrypt and decrypt various things. This includes:\n\n### [String Cryptographer](https://omiyagames.github.io/omiya-games-cryptography/manual/string-cryptographer.html)\n\nAn asset that encrypts and decrypts texts.\n\n![Inspector](https://omiyagames.github.io/omiya-games-cryptography/resources/string-cryptographer/inspector.png)\n\nUsing the asset in script is super-easy:\n\n```csharp\n// Create a new cryptographer with random password, hash key, etc.\n// StringCryptographer can also be an inspector variable.\nStringCryptographer encrypter = new StringCryptographer();\n\n// Encrypt the text\nstring encryptedText = encrypter.Encrypt(text);\n\n// Print on the console\nDebug.Log(text + \" encrypted is: \" + encryptedText);\n```\n\nFor more details, check out the references below:\n- [Documentation](https://omiyagames.github.io/omiya-games-cryptography/manual/string-cryptographer.html)\n- [Source code](/Runtime/StringCryptographer.cs)\n\n### [Domain List](https://omiyagames.github.io/omiya-games-cryptography/manual/domain-list.html)\n\nDomain List is a binary file that stores a list of strings, such as a list of acceptable web host domains. This package provides a dialog to create, read, and edit these files.\n\n![Default Window](https://omiyagames.github.io/omiya-games-cryptography/resources/domain-list/default-window.png)\n\nFor security reasons, typical read operation of a Domain List is a bit more involved. For more details, check out the references below:\n- [Documentation](https://omiyagames.github.io/omiya-games-cryptography/manual/domain-list.html)\n- [Source code](/Runtime/DomainList.cs)\n\n## Install\n\nCan be installed via [OpenUPM](https://openupm.com/) or Unity's own Package Manager with the Github URL.  Install the former with `npm install -g openupm-cli`, then run.\n\n```\nopenupm add com.omiyagames.cryptography\n```\n\n## Documentation\n\nFull documentation is available at the [`Documentation~`](https://omiyagames.github.io/omiya-games-cryptography/) directory. For changes made between versions, check out the [`CHANGELOG.md`](https://omiyagames.github.io/omiya-games-cryptography/manual/changelog.html).\n\n## LICENSE\n\nOverall package is licensed under [MIT](/LICENSE.md), unless otherwise noted in the [3rd party licenses](/THIRD%20PARTY%20NOTICES.md) file and/or source code.\n\nCopyright (c) 2016-2021 Omiya Games\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomiyagames%2Fomiya-games-cryptography","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fomiyagames%2Fomiya-games-cryptography","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fomiyagames%2Fomiya-games-cryptography/lists"}