{"id":16098733,"url":"https://github.com/n1ghtf1re/simple-ciphers","last_synced_at":"2025-03-18T07:30:54.892Z","repository":{"id":131062860,"uuid":"147109093","full_name":"N1ghtF1re/Simple-ciphers","owner":"N1ghtF1re","description":"The library contains three simple ciphers: rail-fence, rotating square and wizner cipher","archived":false,"fork":false,"pushed_at":"2018-09-27T07:58:47.000Z","size":325,"stargazers_count":5,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-28T07:54:57.410Z","etag":null,"topics":["chiper","cryptography","cryptography-algorithms","rail-fence","vigener","vigener-cipher","vigenere-cipher"],"latest_commit_sha":null,"homepage":"","language":"Java","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/N1ghtF1re.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":"2018-09-02T17:59:11.000Z","updated_at":"2022-09-11T11:37:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"bdd07f4a-5849-413b-bad7-650dc260604d","html_url":"https://github.com/N1ghtF1re/Simple-ciphers","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N1ghtF1re%2FSimple-ciphers","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N1ghtF1re%2FSimple-ciphers/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N1ghtF1re%2FSimple-ciphers/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/N1ghtF1re%2FSimple-ciphers/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/N1ghtF1re","download_url":"https://codeload.github.com/N1ghtF1re/Simple-ciphers/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243910715,"owners_count":20367538,"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":["chiper","cryptography","cryptography-algorithms","rail-fence","vigener","vigener-cipher","vigenere-cipher"],"created_at":"2024-10-09T18:24:31.731Z","updated_at":"2025-03-18T07:30:54.885Z","avatar_url":"https://github.com/N1ghtF1re.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eSimple ciphers\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://i.imgur.com/ZfMSTrk.png\" width=150\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/N1ghtF1re/Simple-ciphers/stargazers\"\u003e\u003cimg src=\"https://img.shields.io/github/stars/N1ghtF1re/Simple-ciphers.svg\" alt=\"Stars\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/N1ghtF1re/Simple-ciphers/releases\"\u003e\u003cimg src=\"https://img.shields.io/badge/downloads-6-brightgreen.svg\" alt=\"Total Downloads\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/N1ghtF1re/Simple-ciphers/releases\"\u003e\u003cimg src=\"https://img.shields.io/github/tag/N1ghtF1re/Simple-ciphers.svg\" alt=\"Latest Stable Version\"\u003e\u003c/a\u003e\n\u003ca href=\"https://github.com/N1ghtF1re/Simple-ciphers/blob/master/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/github/license/N1ghtF1re/Simple-ciphers.svg\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003c/p\u003e\n\n## About the library\nThe library contains three simple ciphers: rail-fence, rotating square and wizner cipher\n\n## Class RailFence: \nMethods: \n- encode(String message, int key) - return encoded message with a cipher \"Rail-Fence\" with the specified key.\n- decode(String message, int key) - return decoded message with a cipher \"Rail-Fence\" with the specified key.\n\n## Class VigenerCipher: \nConstructors: \n- VigenerCipher() - default, RUSSIAN ALPHABET\n- VigenerCipher(String aplhaber) - With the assignment the alphabet. The characters are written consecutively by a string. Example: \"АБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ\"\n\nMethods: \n- encode(String message, str keyword) - return encoded message with a Vigener cipher with the specified keyword.\n- decode(String message, str keyword) - return decoded message with a Vigener cipher with the specified keyword.\n\n\n## Class RotatingSquare: \nConstructors: \n- RotatingSquare() - default, used default key.\n- RotatingSquare(int[][] key) - With the assignment the key, key - the array of \"holes\" in the square of the format [ [x,y], [x,y], ..]. Example: {{0,0}, {3,1}, {2,2}, {1,3}}\n\nMethods: \n- encode(String message) - return encoded message with a cipher \"Rotating Square\".\n- decode(String message) - return decoded message with a cipher \"Rotating Square\".\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn1ghtf1re%2Fsimple-ciphers","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fn1ghtf1re%2Fsimple-ciphers","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fn1ghtf1re%2Fsimple-ciphers/lists"}