What is the name of hashing algorithm which Twitter used to hash username propaganda accounts?

Recently Twitter published a csv file containing info about the account that were spreading governments-supported propaganda:

https://about.twitter.com/en_us/values/elections-integrity.html#data

I decided to take a look at … Continue reading What is the name of hashing algorithm which Twitter used to hash username propaganda accounts?

The way to determine IV for AES encryption, possible security problems with this approach

I am trying to make a folder encryption with maximum automation (except password input).
Inside a bash script I do the following:

echo $RANDOM | md5sum | cut -d’ ‘ -f1 > iv

and then using it:

openssl aes-128-cbc -m… Continue reading The way to determine IV for AES encryption, possible security problems with this approach