AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Suggestions / Requests (https://forums.alliedmods.net/forumdisplay.php?f=12)
-   -   bcrypt for amxx (https://forums.alliedmods.net/showthread.php?t=316132)

Airkish 05-08-2019 14:57

bcrypt for amxx
 
Started building web platform by using bcrypt hashing but just noticed there's no such hash in amxx.
PHP Code:

enum HashType
{
    
Hash_Crc32 0,  // Provides CRC32 hashing
    
Hash_Md5,        // Provides MD5 hashing
    
Hash_Sha1,       // Provides SHA1 hashing
    
Hash_Sha256,     // Provides SHA256 hashing

    
Hash_Sha3_224,   // Provides SHA3 224 bit hashing
    
Hash_Sha3_256,   // Provides SHA3 256 bit hashing
    
Hash_Sha3_384,   // Provides SHA3 384 bit hashing
    
Hash_Sha3_512,   // Provides SHA3 512 bit hashing

    
Hash_Keccak_224// Provides Keccak 224 bit hashing
    
Hash_Keccak_256// Provides Keccak 256 bit hashing
    
Hash_Keccak_384// Provides Keccak 384 bit hashing
    
Hash_Keccak_512  // Provides Keccak 512 bit hashing
}; 

I wonder if anyone would be able to create function to hash string as bcrypt?

HITLER 05-08-2019 20:25

Re: bcrypt for amxx
 
do you mean NodeJS with "bcrypt" ??
why you don't use amxx functions ? easy

Airkish 05-09-2019 01:44

Re: bcrypt for amxx
 
Quote:

Originally Posted by HITLER (Post 2650931)
do you mean NodeJS with "bcrypt" ??
why you don't use amxx functions ? easy

There's no such encryption as bcrypt in amxx, thats what I am asking for (a function to hash string bcrypt).

DeteCT0R 05-09-2019 09:43

Re: bcrypt for amxx
 
Would be nice a bcrypt.

Airkish 07-01-2019 02:59

Re: bcrypt for amxx
 
bump

Airkish 07-15-2019 00:58

Re: bcrypt for amxx
 
up

Mordekay 07-18-2019 05:42

Re: bcrypt for amxx
 
You should try a pull request @github instead.

Airkish 07-18-2019 06:29

Re: bcrypt for amxx
 
Quote:

Originally Posted by Mordekay (Post 2659587)
You should try a pull request @github instead.

Could you or someone else, im not very familiar with github

Mordekay 07-18-2019 08:31

Re: bcrypt for amxx
 
Me neither.

Airkish 12-22-2019 11:45

Re: bcrypt for amxx
 
UP


All times are GMT -4. The time now is 00:57.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.