For 128 bit hash method, there are several choices like, md5 and murmur3, which is the best?
For 128 bit hash function, what is the best method to select?
4.3k Views Asked by Adam Lee At
1
There are 1 best solutions below
Related Questions in SECURITY
- Can MVC.NET prevent SQL-injection at razor or controller level?
- Forgotten password reset page: should the user need to enter a username/email as well?
- Dynamic roles list in CustomAuthorize ASP MVC
- Access roles from multiple applications
- How to Fix TLS CBC Incorrect Padding Abuse Vulnerability on Windows 2003 Server
- Evernote Web Clipper and Content Security Policy
- Invalidate user credentials when password changes
- Spring Boot MVC non-role based security
- Correct Captcha behaviour on error
- Is macro more secure than static const if I don't want someone to know or change the hardcode value?
- In Android, ensuring only pre-decided users can only use the app
- Authenticating plain text passwords against md5 hash in DB using Apache Shiro
- Symfony2 - handle HTTP/Entity user access restrictions
- Client side computation without exposing code?
- searchable row level encryption using java?
Related Questions in HASH
- Trouble validating md5 hashed password with randomly generated salt?
- Why k and l for LSH used for approximate nearest neighbours?
- PHP password_hash() / bcrypt
- Unique hash/index for time interval
- Order-independent Hash Algorithm
- git hard reset - what am I doing wrong?
- Java HashMap, hashCode() equals() - how to be consistent with multiple keys?
- Create hash from variables in loop
- Hashing integer coordinates of different sizes
- Xcode salting and hashing a password
- Is there a way to generate a Guid from a list of Guids?
- Path reconstruction with Hashing?
- Creating a Hash with keys from an array and empty arrays as the values
- How to read data from a different file without using YAML or JSON
- change value in hash using an array of keys in ruby
Related Questions in MD5
- Trouble validating md5 hashed password with randomly generated salt?
- What is the equivalent of PHP's md5(str, true)?
- Hexdigest in Python
- NSData dataWithContentsOfFile returns different results on device
- PHP Compare a crypted password from db with an inserted password from a form
- Amazon Marketplace - MD5 content-header of XML in curl
- Convert md5 in base64 in md5 of 32 characters with PHP
- How safe is the md5 hashing algorithmic if I know part of the original data
- ContentMD5 Amazon S3 Upload Bad Digest
- Generate MD5 Hash of String in JRuby
- Formatting issue with md5deep
- A few questions about md5 collision in production
- C# - How to hash MD5 for more than one file at the same time?
- Is this a bad practice for storing passwords in PHP?
- Argument of type "unsigned long *" is incompatible with parameter of type "HCRYPTHASH *"
Related Questions in MURMURHASH
- Using hashes as IDs in key-value stores
- Is there any Delphi implementation of MurMurHash3?
- How to spike hash function collision rate?
- Murmurhash2 Unsigned Int overflow
- difference between hashing on x86 or x64
- How to use murmurhash function effectively for strings
- For 128 bit hash function, what is the best method to select?
- Cassandra hashing algorithm with composite keys
- How to generate hash of arbitrary length with MurmurHash3 32 bit
- How do I hash integers and strings inputs using murmurhash3
- Is there a way to generate the same hash across multiple executions in Swift?
- Python 3.7 spaCy Help Needed- Environment Inconsistency Issue?
- Apply scikit-learn murmurhash3_32 on a Pandas dataframe
- MurmurHash3 - Java and Python return different results on long input
- MurmurHash - what is it?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
From the security perspective they are all bad because 128 bit is nowadays much too short.
Therefore you want a cryptographically secure hash take e.g. RIPEMD-160 (which is AFAIR not as much broken as SHA-1).
If don't need real security it doesn't matter if you use md5 or murmur3 or whatever 128 bit hash.