{"id":23124976,"url":"https://github.com/matusollah/xorcipher","last_synced_at":"2025-04-04T05:09:50.045Z","repository":{"id":248108663,"uuid":"827782920","full_name":"MatusOllah/xorcipher","owner":"MatusOllah","description":"XOR Cipher library for Go","archived":false,"fork":false,"pushed_at":"2024-07-12T11:15:02.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-09T16:22:44.386Z","etag":null,"topics":["go","golang","xor","xor-cipher","xor-encryption"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/MatusOllah/xorcipher","language":"Go","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/MatusOllah.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":"2024-07-12T11:11:38.000Z","updated_at":"2024-07-12T12:50:10.000Z","dependencies_parsed_at":"2024-07-12T13:19:51.688Z","dependency_job_id":null,"html_url":"https://github.com/MatusOllah/xorcipher","commit_stats":null,"previous_names":["matusollah/xorcipher"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fxorcipher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fxorcipher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fxorcipher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MatusOllah%2Fxorcipher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MatusOllah","download_url":"https://codeload.github.com/MatusOllah/xorcipher/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247123107,"owners_count":20887261,"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":["go","golang","xor","xor-cipher","xor-encryption"],"created_at":"2024-12-17T08:12:09.851Z","updated_at":"2025-04-04T05:09:50.028Z","avatar_url":"https://github.com/MatusOllah.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# xorcipher\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/MatusOllah/xorcipher.svg)](https://pkg.go.dev/github.com/MatusOllah/xorcipher) [![Go Report Card](https://goreportcard.com/badge/github.com/MatusOllah/xorcipher)](https://goreportcard.com/report/github.com/MatusOllah/xorcipher)\n\n**xorcipher** is a XOR Cipher library for Go.\n\n## Basic Usage\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"encoding/hex\"\n\n    \"github.com/MatusOllah/xorcipher\"\n)\n\nfunc main() {\n    key := []byte(\"horalky\")\n    plaintext := []byte(\"Hello, World!\")\n\n    block, err := xorcipher.NewCipher(key)\n    if err != nil {\n        panic(err)\n    }\n\n    ciphertext := make([]byte, len(plaintext))\n    block.Encrypt(ciphertext, plaintext)\n\n    fmt.Println(hex.EncodeToString(ciphertext)) // \u003e 200a1e0d0347593f00000d084a\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatusollah%2Fxorcipher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatusollah%2Fxorcipher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatusollah%2Fxorcipher/lists"}