Differences From Artifact [2ef1978fd7]:
- File LegacyPasswordGenerator.h — part of check-in [4514c363cd] at 2017-04-15 19:23:10 on branch trunk — Fix URL in copyright header (user: js, size: 1318) [annotate] [blame] [check-ins using]
To Artifact [8bad498857]:
- File LegacyPasswordGenerator.h — part of check-in [f13f84c5b9] at 2017-11-26 15:01:01 on branch trunk — Add support for using a keyfile (user: js, size: 1337) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 | #import "PasswordGenerator.h" @interface LegacyPasswordGenerator: OFObject <PasswordGenerator> { size_t _length; OFString *_site; const char *_passphrase; unsigned char *_output; } @end | > | 22 23 24 25 26 27 28 29 30 31 32 33 | #import "PasswordGenerator.h" @interface LegacyPasswordGenerator: OFObject <PasswordGenerator> { size_t _length; OFString *_site; OFData *_keyfile; const char *_passphrase; unsigned char *_output; } @end |