Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
78 views

A custom directory/folder merge tool

I am thinking about developing a custome directory/folder merge tool as part of learning functional programming as well as to scratch a very personal itch. I usually work on three different computers ...
2
votes
0answers
119 views

Is this a correct ripemd160 core function? (in python)

Assuming that everything else (functions, constants, etc) are correct, is this a correct main loop of ripemd160 for python? for j in range(80): T = (a+ ROL( (F(b, c, d, j) + X[r[j]] + ...
2
votes
3answers
2k views

RIPEMD-160 vs SHA-256

Can anyone shed some light into SHA-256 and RIPEMD-160, which algorithm is normally faster and what are the performance and space comparisons, if any? By space comparisons I don't mean 160 bits and ...
1
vote
1answer
194 views

what is wrong with my ripemd160 python code?

everything i have tried has given me wrong output values. i even copied C codes and changed them so that they would work in python and i still get wrong outputs. what is wrong? import os, math def ...
0
votes
2answers
48 views

hex representation issue

If I want the following result : RIPEMD-160("The quick brown fox jumps over the lazy dog") = 37f332f68db77bd9d7edd4969571ad671cf9dd3b I tried this : string hash11 = ...
0
votes
0answers
40 views

RIPEMD-320 Hash Encrypter c# for windows mobile

I am trying to use the ripemd-320 hash encripty with a small app for Win CE/Win Mobile. I use the HashLib in .net but it does not work with win mobile. I would like to know if it's possible to create ...
-2
votes
2answers
168 views

Are the two codes equivalent to each other?

i know ive asked similar questions like this before, but: Is this pseudocode here the same as my code? upper case variables are the variables in the pseudocode with " ' " and the values with ...