Differences From Artifact [4f629bacac]:
- File ScryptPWGen.h — part of check-in [4772cb8670] at 2016-10-08 12:24:32 on branch trunk — Add a license (user: js, size: 1253) [annotate] [blame] [check-ins using]
To Artifact [edee7e31d5]:
- File
ScryptPWGen.h
— part of check-in
[7691951aca]
at
2016-10-08 12:24:43
on branch trunk
— Add new generation algorithm
The scrypt-genpass compatible one is now the legacy algorithm
(activated with -L or --legacy). (user: js, size: 1262) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
21 22 23 24 25 26 27 | */ #import <ObjFW/ObjFW.h> @interface ScryptPWGen: OFObject <OFApplicationDelegate> { size_t _length; | | | 21 22 23 24 25 26 27 28 29 30 | */ #import <ObjFW/ObjFW.h> @interface ScryptPWGen: OFObject <OFApplicationDelegate> { size_t _length; bool _legacy, _repeat; } @end |