Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ziggi/dehasher
Encode text and decode hash
https://github.com/ziggi/dehasher
Last synced: 14 days ago
JSON representation
Encode text and decode hash
- Host: GitHub
- URL: https://github.com/ziggi/dehasher
- Owner: ziggi
- License: mit
- Created: 2012-03-29T19:12:59.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2017-02-07T19:52:43.000Z (about 8 years ago)
- Last Synced: 2024-04-17T03:43:28.193Z (10 months ago)
- Language: PHP
- Homepage: http://hash.ziggi.org/
- Size: 140 KB
- Stars: 6
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# About deHasher
PHP class and web interface for dehashing hash sums.# Demo
See demo here: http://hash.ziggi.org/# Using external API
## Get hash
##### Example
```
http://hash.ziggi.org/api/hash.get?text=TEXT&type=TYPE
```
##### Parameters
Parameter | Optional | Description
--------- | ------- | ------------
text | no | for hashing
type | yes | type of hash
##### Result
If **type** is set then plain text. If not then json array with all hashes.## Get dehashed text
##### Example
```
http://hash.ziggi.org/api/dehash.get?hash=HASH&type=TYPE&include_external_db
```
##### Parameters
Parameter | Optional | Description
------------------- | ------- | ------------
hash | no | hash for dehashing
type | yes | type of hash
include_external_db | yes | use external databases
##### Result
If result has been found then plain text. If not then nothin.## Get count
##### Example
```
http://hash.ziggi.org/api/info.get?count&type=TYPE
```
##### Parameters
Parameter | Optional | Description
--------- | ------- | ------------
type | yes | type of hash
##### Result
If **type** is set then count of hashes with this type. If not then count of all hashes.## Get supported algorythms
##### Example
```
http://hash.ziggi.org/api/info.get?algo&type=TYPE
```
##### Parameters
Parameter | Optional | Description
--------- | ------- | ------------
type | yes | type of hash
##### Result
If **type** is set then 1 or 0 depending on the availability of the algorithm. If not then JSON list of all available algorythms.