Login Register


Gold [API] String Encryption - Any Hash Type [Free] filter_list
Author
Message
[API] String Encryption - Any Hash Type [Free] #1
Hey guys, so I released a free API for string encryption, that anyone can use!
You may encrypt any string with any known hash type (md2, md5, sha1, sha224, sha256, etc...)  with this API.
Feel free to use it or share it with friends!
Link: https://rapidapi.com/Crimin4L/api/string...-hash-type

Simply Implement into your website with php like so:

PHP Code:
<?php header('Content-Type: application/json'); if(isset($_GET['type']) && isset($_GET['string'])){ $type = $_GET['type']; $string = $_GET['string']; $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => "https://string-encryption-any-hash-type.p.rapidapi.com/encrypt?type=${type}&string=${string}", CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_ENCODING => "", CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 30, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => "GET", CURLOPT_HTTPHEADER => array( "x-rapidapi-host: string-encryption-any-hash-type.p.rapidapi.com", "x-rapidapi-key: <RapidAPI-Key>" ), )); $response = curl_exec($curl); $err = curl_error($curl); curl_close($curl); if(!$err){ echo $response; }else{ echo "cURL Error #:" . $err; } }else{ echo 'Error: Append link like so: ?type={hash type}&string={any string}' } ?>

*Note: replace <RapidAPI-Key> with YOUR api key you get from signing up on Rapidapi.com for free!
(This post was last modified: 10-07-2020, 12:07 AM by Crimin4L.)
[Image: signature.png]

Reply

RE: [API] String Encryption - Any Hash Type [Free] #2
The link Is not working at the time of this post.

I shall check back later.
[Image: AD83g1A.png]

Reply

RE: [API] String Encryption - Any Hash Type [Free] #3
(10-04-2020, 02:13 AM)mothered Wrote: The link Is not working at the time of this post.

I shall check back later.

Really, what does it say? I have it set to public I don't see why it wouldn't work :L

EDIT: I logged in on a seperate account and it seemed to work
(This post was last modified: 10-04-2020, 04:02 AM by Crimin4L.)
[Image: signature.png]

Reply

RE: [API] String Encryption - Any Hash Type [Free] #4
(10-04-2020, 04:00 AM)Crimin4L Wrote: Really, what does it say? I have it set to public I don't see why it wouldn't work :L
It's all good now.

It was failing to load- all due to my IDS blocking the gateway. I've since tried It on another system, and It's fine.
[Image: AD83g1A.png]

[+] 1 user Likes mothered's post
Reply

RE: [API] String Encryption - Any Hash Type [Free] #5
(10-04-2020, 09:11 AM)mothered Wrote:
(10-04-2020, 04:00 AM)Crimin4L Wrote: Really, what does it say? I have it set to public I don't see why it wouldn't work :L
It's all good now.

It was failing to load- all due to my IDS blocking the gateway. I've since tried It on another system, and It's fine.

Haha I was wondering like wtf, why isn't it public XD
[Image: signature.png]

[+] 1 user Likes Crimin4L's post
Reply

RE: [API] String Encryption - Any Hash Type [Free] #6
Perfect but it takes a lot of time to load, Why not using your website?
Die  But Don't Lie
“Oh Abu Dharr! Don’t look at the smallness of the sin but look at the one you disobeyed.” Prophet Muhammad (pbuh)
[Image: p_237m2jx1.png]
Click for Free VPN

Reply

RE: [API] String Encryption - Any Hash Type [Free] #7
(10-03-2020, 09:57 PM)Crimin4L Wrote: Hey guys, so I released a free API for string encryption, that anyone can use!
You may encrypt any string with any known hash type (md2, md5, sha1, sha224, sha256, etc...)  with this API.
Feel free to use it or share it with friends!
Link: https://rapidapi.com/Crimin4L/api/string...-hash-type

Thank you for sharing your api.Super sweet to have all of the common tools in one spot always.🦄

Reply

RE: [API] String Encryption - Any Hash Type [Free] #8
(10-06-2020, 01:42 PM)Mr.Kurd Wrote: Perfect but it takes a lot of time to load, Why not using your website?

is it ran through my website, but linking it through rapid gives me stats. The Average Latency is 217.25 ms.
Its as fast as it would be on my website:
[Image: awbCoba.gif]

As for rapid it self, yes that website does take forever to load but it doesn't have anything to do with the api speeds.

(10-06-2020, 04:58 PM)satoshikilla Wrote:
(10-03-2020, 09:57 PM)Crimin4L Wrote: Hey guys, so I released a free API for string encryption, that anyone can use!
You may encrypt any string with any known hash type (md2, md5, sha1, sha224, sha256, etc...)  with this API.
Feel free to use it or share it with friends!
Link: https://rapidapi.com/Crimin4L/api/string...-hash-type

Thank you for sharing your api.Super sweet to have all of the common tools in one spot always.🦄
Not all the tools, but only one right now as stated (encrypt). But I do plan on implementing more API's in the near future Smile
(This post was last modified: 10-07-2020, 12:14 AM by Crimin4L.)
[Image: signature.png]

[+] 1 user Likes Crimin4L's post
Reply

RE: [API] String Encryption - Any Hash Type [Free] #9
(10-06-2020, 11:41 PM)Crimin4L Wrote:
(10-06-2020, 01:42 PM)Mr.Kurd Wrote: Perfect but it takes a lot of time to load, Why not using your website?

is it ran through my website, but linking it through rapid gives me stats. The Average Latency is 217.25 ms.
Its as fast as it would be on my website:
[Image: awbCoba.gif]

As for rapid it self, yes that website does take forever to load but it doesn't have anything to do with the api speeds.

(10-06-2020, 04:58 PM)satoshikilla Wrote:
(10-03-2020, 09:57 PM)Crimin4L Wrote: Hey guys, so I released a free API for string encryption, that anyone can use!
You may encrypt any string with any known hash type (md2, md5, sha1, sha224, sha256, etc...)  with this API.
Feel free to use it or share it with friends!
Link: https://rapidapi.com/Crimin4L/api/string...-hash-type
Not all the tools, but only one right now as stated (encrypt). But I do plan on implementing more API's in the near future Smile

Thank you for sharing your api.Super sweet to have all of the common tools in one spot always.🦄

well you have a reality at least and not just an idea.There are API tool hubs popping up here and there..but I think never too many.
Be unique from the rest andgive it a twist.

API which feature script of tools we use in Kali I would like to see more.
cloudfail and deeper scanners that go beyond nmap and crimeflare are things we need on hand.

Keep up the good work my freind

[+] 1 user Likes satoshikilla's post
Reply

RE: [API] String Encryption - Any Hash Type [Free] #10
(10-06-2020, 11:41 PM)Crimin4L Wrote: The Average Latency is 217.25 ms.
In my view and usability, that's no Issue whatsoever.
[Image: AD83g1A.png]

[+] 1 user Likes mothered's post
Reply







Users browsing this thread: