Artifact e7a09ac2970e35353734672ba0b4b0242b6782e5440a954048770ce0ff11ee11:
- File LegacyPasswordGenerator.h — part of check-in [617d8a7cfb] at 2016-10-03 11:40:54 on branch trunk — Move actual password derivation to separate class (user: js, size: 354) [annotate] [blame] [check-ins using]
#import <ObjFW/ObjFW.h> @interface LegacyPasswordGenerator: OFObject { size_t _length; OFString *_site; const char *_passphrase; unsigned char *_output; } @property size_t length; @property (copy) OFString *site; @property const char *passphrase; @property (readonly) unsigned char *output; + (instancetype)generator; - (void)derivePassword; @end