This is the Readme file for rbunlock

Installing the libraries under Windows NT
     Locate Jack Lacey's "cryptolib_1.1.tar.gz"
     Go to the cryptolib.src directory.
        for %f in (*.c) do cl /ML /c /DNO_QUANTIZE %f
        lib /out:libcrypt.lib *.obj
        copy libcrypt.lib <compiledir>
        copy libcrypt.h <compiledir>
     Locate the EAY libraries:
        libbf-0.8.2b.tar.gz
        libsha-0.8.2b.tar.gz
     For BF, compile command is 
         cl /ML sha_dgst.c
         copy sha1dgst.obj <compiledir>
         copy sha.h <compiledir>
     For BF, compile commands are
         (the for/do command must be all on one line)
           for %f in (bf_enc.c bf_skey.c bf_ecb.c bf_cfb64.c bf_ofb64.c);
            do cl /ML /c %f      
         lib /out:libbf.lib *.obj
         copy blowfish.h <compiledir>

     Finally, to build rbunlock
         cl /I . /ML rbunlock.c libcrypt.lib libbf.lib sha1dgst.obj

     Whew...





        

