CryptoPassphrase  Check-in [d981c4fcb8]

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: d981c4fcb8aaae2637e00c06676d3cbbe26bb579da0e2d9b3eb4f911974f3b4b
User & Date: js on 2018-07-29 20:47:20
Other Links: manifest | tags
Context
2019-01-22
23:17
Upgrade Xcode project to 10.1 check-in: ec17cf3ed4 user: js tags: trunk
2018-07-29
20:47
Adjust to ObjFW changes check-in: d981c4fcb8 user: js tags: trunk
2018-01-11
22:53
Update copyright check-in: 6e2e7e9f37 user: js tags: trunk
Changes

Modified ScryptPWGen.m from [4c1532cc13] to [0896ee7cbd].

134
135
136
137
138
139
140
141

142
143
144
145
146
147
148
149
150
151
152
153
154
155
156

157
158
159
160
161
162
163
134
135
136
137
138
139
140

141
142
143
144
145
146
147
148
149
150
151
152
153
154
155

156
157
158
159
160
161
162
163







-
+














-
+








			[OFApplication terminateWithStatus: 1];
		}
	}

	prompt = [OFString stringWithFormat: @"Passphrase for site \"%@\": ",
					     generator.site];
	promptCString = [prompt cStringWithEncoding: [OFLocalization encoding]];
	promptCString = [prompt cStringWithEncoding: [OFLocale encoding]];

	if (keyFilePath != nil)
		keyFile = [OFMutableData dataWithContentsOfFile: keyFilePath];

	passphrase = getpass(promptCString);
	@try {
		if (_repeat) {
			char *passphraseCopy = of_strdup(passphrase);

			if (passphraseCopy == NULL)
				@throw [OFOutOfMemoryException exception];

			@try {
				of_string_encoding_t encoding =
				    [OFLocalization encoding];
				    [OFLocale encoding];

				prompt = [OFString stringWithFormat:
				    @"Repeat passphrase for site \"%@\": ",
				    generator.site];
				passphrase = getpass(
				    [prompt cStringWithEncoding: encoding]);