{"id":28383961,"url":"https://github.com/haneenmahd/hashable","last_synced_at":"2025-07-03T02:02:56.061Z","repository":{"id":37014532,"uuid":"442174957","full_name":"haneenmahd/hashable","owner":"haneenmahd","description":"A Client-Side Gateway for users to interact play and test with cryptography 🤩","archived":false,"fork":false,"pushed_at":"2023-10-17T22:40:21.000Z","size":1883,"stargazers_count":5,"open_issues_count":5,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-05-30T08:15:40.689Z","etag":null,"topics":["api-gateway","client-side-cryptography","cryptography","gateway","hashing","hashing-in-js","server"],"latest_commit_sha":null,"homepage":"https://hashable.space","language":"TypeScript","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/haneenmahd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-12-27T13:56:01.000Z","updated_at":"2024-02-22T15:55:10.000Z","dependencies_parsed_at":"2022-07-11T15:04:08.218Z","dependency_job_id":null,"html_url":"https://github.com/haneenmahd/hashable","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/haneenmahd/hashable","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haneenmahd%2Fhashable","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haneenmahd%2Fhashable/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haneenmahd%2Fhashable/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haneenmahd%2Fhashable/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/haneenmahd","download_url":"https://codeload.github.com/haneenmahd/hashable/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/haneenmahd%2Fhashable/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261962419,"owners_count":23236944,"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":["api-gateway","client-side-cryptography","cryptography","gateway","hashing","hashing-in-js","server"],"created_at":"2025-05-30T07:38:26.729Z","updated_at":"2025-06-25T22:31:40.822Z","avatar_url":"https://github.com/haneenmahd.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eHashable  \u003cimg src=\"https://github.com/haneenmahd/hashable/blob/master/docs/logo.svg\" alt=\"Hashable Icon\" height=\"40px\" /\u003e\n  \u003c/h1\u003e\n  \u003cimg src=\"https://github.com/haneenmahd/hashable/actions/workflows/build-server.yml/badge.svg\" alt=\"Build Server Status Badge\" /\u003e\n  \u003cimg src=\"https://github.com/haneenmahd/hashable/actions/workflows/test-server.yml/badge.svg\" alt=\"Test Server Badge\" /\u003e\n  \u003cimg src=\"https://badgen.net/github/release/haneenmahd/hashable\" alt=\"Hashable Latest Release\" /\u003e\n  \u003cimg src=\"https://badgen.net/github/last-commit/haneenmahd/hashable\" alt=\"Hashable Latest Release\" /\u003e\n  \u003cimg src=\"https://badgen.net/github/license/haneenmahd/hashable\" alt=\"Hashable Latest Release\" /\u003e\n  \n  \u003cbr /\u003e\n\n  \u003cp\u003eBrowser Playground \u0026 Interactive way to learn cryptography 🤩. \u003ci\u003eAlso supports a client side hashing API.\u003c/i\u003e \u003c/p\u003e\n  \n  \u003cdiv align=\"center\"\u003e\n    \u003ca href=\"https://hashable.space\"\u003e👋 Website\u003c/a\u003e\n    \u003ca href=\"https://github.com/haneenmahd/hashable/tree/master/server#readme\"\u003e📜 API documentation\u003c/a\u003e\n  \u003c/div\u003e\n  \u003cimg width=\"1097\" alt=\"Screenshot 2022-01-02 at 11 46 01 PM\" src=\"https://user-images.githubusercontent.com/72091386/147885348-cf935ab9-f485-47e1-b4d7-059960607e51.png\"\u003e\n\u003c/div\u003e\n\u003ch2\u003eWhat is Hashable?\u003c/h2\u003e\n\u003cp\u003e\u003cb\u003eHashable\u003c/b\u003e is an in-browser playground to experiment and play around with different cryptographic methods and functions.\u003c/p\u003e\n\n\u003ch2\u003e\n REST API 🛠\n\u003c/h2\u003e\n\u003cp\u003e\nOur Rest API is a simple implementation of generating hashes through a get request.\n\nHere is on example using **Javascript**, which represents a simple program that hashes a string in sha256.\n\n```js\nconst axios = require(\"axios\");\n\nconst reqUrl = \"https://hashable-api.herokuapp.com\";\n\n// string going to be hashed\nconst str = \"HelloWorld\";\n// hashing method like \"md5\"\nconst method = \"sha256\";\n// encoding method like \"base64\", \"base64url\"\nconst encoding = \"hex\";\n\naxios\n  .get(`${reqUrl}/hash?algorithm=${method}\u0026str=${str}\u0026encoding=${encoding}`)\n  .then((res) =\u003e res.data)\n  .catch((err) =\u003e console.log(err));\n```\n\nSee more about our API documentation at [`/api`](https://github.com/haneenmahd/hashable/tree/master/api).\n\nGet Examples for:\n\n- [Ruby 💎](https://github.com/haneenmahd/hashable/tree/master/examples/ruby)\n- [Swift 🦅](https://github.com/haneenmahd/hashable/tree/master/examples/swift)\n- [ReactJS 😅](https://github.com/haneenmahd/hashable/tree/master/examples/react-js)\n- [VanillaJS 🍦](https://github.com/haneenmahd/hashable/tree/master/examples/client-side-js)\n\nGet complete examples [here 🤓](https://github.com/haneenmahd/hashable/tree/master/examples).\n\n\u003c/p\u003e\n\n\u003ch2\u003e\nSupport ❤️\n\u003c/h2\u003e\n\u003cp\u003e\nShow your love, give our repo a star 🌟 .\n\u003c/p\u003e\n\n\u003ch2\u003e\nBuilding our Project 🏗\n\u003c/h2\u003e\n\u003cp\u003e\nFollow these steps to build and development our project.\n\nFirst of all, we recommend having Node.js of version 14 or higher.\nDownload Node.js \u003ca target=\"_blank\" href=\"https://nodejs.org/en/download/\"\u003eHere 📑\u003c/a\u003e\n\n\u003c/p\u003e\n\n- Node.js\n- Typescript (using [npm](https://npmjs.org))\n- Git\n\nClone the repo using `Git`:\n\n```sh\ngit clone https://github.com/haneenmahd/hashable.git\n```\n\nCreate and set a branch name:\n\n```sh\ngit branch \u003cyour-branch-name\u003e\ngit checkout \u003cyour-branch-name\u003e\n```\n\nInstall Packages 📦\n\n```sh\nsh scripts/install.sh\n```\n\nContinue working with our repo 😄.\n\nFor ease of development purposes, you can use this command to open up development server and build according to changes.\n\n```\ncd api\nnpm run dev\n```\n\nRun this script to build the API:\n\n```sh\ncd api\nnpm run build\n```\n\nLinting the API's codebase:\n\n```sh\ncd api\nnpm run lint\n```\n\nIf you wanna build and start the server from scratch, run this instead:\n\n```sh\ncd api\nnpm run build:start\n```\n\nTo start the server from the current built folder.\n\n```sh\ncd api\nnpm run start\n```\n\nCleaning build files:\n\n```sh\ncd api\nnpm run clean\n```\n\nRunning server tests\n\n```sh\nnpm run test\n```\n\nLinting Code inside web\n\n```sh\ncd web\nnpm run lint\n```\n\n\u003ch2\u003e\nContact💬\n\u003c/h2\u003e\n\u003cp\u003e\nYou can contact the Developer using my Mail \u003ca target=\"_blank\" href=\"mailto:haneenmahdin@gmail.com\"\u003e📧\u003c/a\u003e\n\u003c/p\u003e\n\n\u003ch2\u003e\nLicense 📑\n\u003c/h2\u003e\n\u003cp\u003e\nWe have licensed this project under \u003cb\u003eMIT\u003c/b\u003e.\n\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaneenmahd%2Fhashable","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhaneenmahd%2Fhashable","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhaneenmahd%2Fhashable/lists"}