Hi All, I am trying to call md5 algorithm from my SAS program. Can anyone help on doing this? I currently dont have md5 installed on my system.
Md5() is a SAS function and there is no need to install it.
Give a String with a length less than 256 bytes and get a 16-byte value. An example:
mymd5 = md5("This is a big string");
Are you asking about the SAS function MD5? The function takes any string as the argument and returns a 128-bit hash value.
data junk;
y = md5('abc');
z = md5('access method');
put y= / y = hex32.;
put z= / z = hex32.;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.