> On Oct 17, 2015, at 04:31, Adam Wysocki <bsd-li...@chmurka.net> wrote: > > Hi misc, > > I'm migrating one of my servers from Linux to OpenBSD and I need a method > to authenticate users based on passwords treated with Linux crypt() > function. Passwords are encrypted with salted DES, without glibc2 > extensions. For example: > > $ htpasswd -nbd test test > test:MbfD9Vq5SL5aE
As you're looking into solutions, make sure you're looking at the right problem. Your text sounds like you're migrating system account passwords, but htpasswd is usually used for web server credentials. I've not seen a Linux system use traditional crypt in quite a few years; they're usually salted MD5 hashes. Devin