Overview
Comment: | Adjust to ObjFW changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c359fca25a30e9b225dab9f070d6a2c6 |
User & Date: | js on 2022-03-25 11:37:51 |
Other Links: | manifest | tags |
Context
2022-04-24
| ||
16:02 | [iOS] Fix dark mode check-in: 1e684ad58a user: js tags: trunk | |
2022-03-25
| ||
11:37 | Adjust to ObjFW changes check-in: c359fca25a user: js tags: trunk | |
2021-04-28
| ||
21:51 | Adjust to ObjFW changes check-in: aec6746a96 user: js tags: trunk | |
Changes
Modified LegacyPasswordGenerator.m from [2242defb21] to [1a1bc2ad1c].
︙ | ︙ | |||
60 61 62 63 64 65 66 67 68 69 70 71 72 73 | size_t passphraseLength, combinedPassphraseLength; OFSecureData *combinedPassphrase; char *combinedPassphraseItems; unsigned char *outputItems; [siteHash updateWithBuffer: _site.UTF8String length: _site.UTF8StringLength]; [_output release]; _output = nil; _output = [[OFSecureData alloc] initWithCount: _length + 1 allowsSwappableMemory: true]; passphraseLength = combinedPassphraseLength = _passphrase.count - 1; | > | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | size_t passphraseLength, combinedPassphraseLength; OFSecureData *combinedPassphrase; char *combinedPassphraseItems; unsigned char *outputItems; [siteHash updateWithBuffer: _site.UTF8String length: _site.UTF8StringLength]; [siteHash calculate]; [_output release]; _output = nil; _output = [[OFSecureData alloc] initWithCount: _length + 1 allowsSwappableMemory: true]; passphraseLength = combinedPassphraseLength = _passphrase.count - 1; |
︙ | ︙ |
Modified NewPasswordGenerator.m from [b6004b9716] to [64379f8a80].
︙ | ︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 | size_t passphraseLength, combinedPassphraseLength; OFSecureData *combinedPassphrase; char *combinedPassphraseItems; unsigned char *outputItems; [siteHash updateWithBuffer: _site.UTF8String length: _site.UTF8StringLength]; [_output release]; _output = nil; _output = [[OFSecureData alloc] initWithCount: _length + 1 allowsSwappableMemory: true]; passphraseLength = combinedPassphraseLength = _passphrase.count - 1; | > | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | size_t passphraseLength, combinedPassphraseLength; OFSecureData *combinedPassphrase; char *combinedPassphraseItems; unsigned char *outputItems; [siteHash updateWithBuffer: _site.UTF8String length: _site.UTF8StringLength]; [siteHash calculate]; [_output release]; _output = nil; _output = [[OFSecureData alloc] initWithCount: _length + 1 allowsSwappableMemory: true]; passphraseLength = combinedPassphraseLength = _passphrase.count - 1; |
︙ | ︙ |