You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description :
Approach is to enhance the storing of hash. The current way of storing the hashes is not efficient.
Hashes are stored in string format which consumes more space i.e 32 bytes(md5). The hash generated are hexadecimal of 16 bytes(md5). Storing the same as integer can bring down the number of bytes to 16. Thus the amount of space taken by the stub and hash store can be reduced.
The text was updated successfully, but these errors were encountered:
…33
/*
Accepts a string and generate a 16 byte digest using md5
this digest is converted into hexadecimal string using parse
and converts this hexadecimal into 16 byte digest using unparse
*/
Signed-off-by: Sukumar <[email protected]>
…33
/*
Prototype to parse and unparse the hash value.
Current program :
Takes a string and hash type it generates digest of
perticular hash for a given string and converts this digest
to a hexadecimal digits using parse.
The hexadecimal digits are converted back into digest
using unparse.
*/
Signed-off-by: Sukumar <[email protected]>
Description :
Approach is to enhance the storing of hash. The current way of storing the hashes is not efficient.
Hashes are stored in string format which consumes more space i.e 32 bytes(md5). The hash generated are hexadecimal of 16 bytes(md5). Storing the same as integer can bring down the number of bytes to 16. Thus the amount of space taken by the stub and hash store can be reduced.
The text was updated successfully, but these errors were encountered: