Differences From Artifact [47a42d209c]:
- File NewPasswordGenerator.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: 1334) [annotate] [blame] [check-ins using]
To Artifact [e075899521]:
- File NewPasswordGenerator.h — part of check-in [43dbe5c8cb] at 2017-11-26 20:09:53 on branch trunk — iOS: Add initial parts of support for key files (user: js, size: 1334) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
22 23 24 25 26 27 28 | #import "PasswordGenerator.h" @interface NewPasswordGenerator: OFObject <PasswordGenerator> { size_t _length; OFString *_site; | | | 22 23 24 25 26 27 28 29 30 31 32 33 | #import "PasswordGenerator.h" @interface NewPasswordGenerator: OFObject <PasswordGenerator> { size_t _length; OFString *_site; OFData *_keyFile; const char *_passphrase; unsigned char *_output; } @end |