proc/ExportSafeFile(savefile/s)
var/safetext = RC5_Encrypt(s.ExportText("/"), "test")
del(s)
s = new("[ckey].sav")
s["safetext"] << safetext
src.Export(s)
Problem description:
So, I'm using this code from the rc5 encryption demo, it will create the savefile in the host's folder, but it won't create a new save in my key_info. Does anyone have an idea what's wrong?