Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date: Sun, 13 Jan 2013 12:04:34 -0200
From: Claudio André <claudioandre.br@...il.com>
To: john-dev@...ts.openwall.com
Subject: Re: Changes to common-opencl.c

Em 13-01-2013 00:14, magnum escreveu:
> Having said that, I have plans for using a private find_best_lws() for my split-kernel formats because they should do this enumeration with a lot lower iteration count than normal. I do GWS enumeration that way, and it speeds things up a great deal. Unfortunately I can't see any way to have a shared function support that.

This code is not enough to solve your problem?


static void init(struct fmt_main *self)
         //Special crypt_all
         self->methods.crypt_all = crypt_all_benchmark;
         //call shared code
         ...

         //Real crypt_all
         self->methods.crypt_all = crypt_all;
}

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.