1
I have an old file which I encrypted with old UNIX-style crypt
on Solaris. (Yes, I know it's weak, but it was appropriate in this case.)
I now want to decrypt it but I am running Ubuntu which doesn't have crypt
but rather mcrypt
as a "replacement" which, at least in default mode, is something else entirely.
Are there options which will make mcrypt
behave like crypt
or do I need to build it from source? In which case, where is the source?
Thanks.