BookmarkSubscribeRSS Feed
RobertNYC
Obsidian | Level 7

Hi all, 

 

I'm looking for a program to take a string variable (email address) and create a hash for the value in each row via either MD5 or SHA-1. 

 

Tried using the sha256 function, because it was all I could find, but it is not the correct hashing algorithm which I need to apply.   I need to use MD5 or SHA_1.   Any assistance will be greatly appreciated.

 

Thanks!

 

data want;

set have;

  format hash $hex64.;

hash=sha256(EMAIL_ADDRESS);; run;

3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

 

I may have missed something here, but from my understanding MD5 is an algorithm for ensuring a file is complete and unchanged from a sender.  I think SHA-1 is a simliar technology, but I don't know that one off the top of my head.  Could you clarify your requirements, i.e. what needs to be encrpyted, why it needs it, and why those particular technologies?  If you just want to hide a password or email then there is this function:

http://support.sas.com/documentation/cdl/en/proc/61895/HTML/default/viewer.htm#a002595988.htm

 

But that has nothing to do with MD5.  Or alternatively you could get a free command line MD5 generator program and use that to do the job:

https://www.fourmilab.ch/md5/

E.g. 

infile tmp pipe 'md5gen "c:\tmp.txt"';
data want;
  length mymd5 $100;
  infile tmp;
  input mymd5 $;
run;
ChrisHemedinger
Community Manager

In just over one month an approach will be available as part of SAS Global Forum proceedings, thanks to a paper by Rick Langston.  Rick's paper shows how you can take a well-documented C-language algorithm and implement in DATA step.  It's fascinating!

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2892 views
  • 1 like
  • 4 in conversation