Overview
Comment: | ChromeOS: Add new PIN to requests to sign once we gathered a new PIN |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ae9cfddbd2ddc3cf3f51a7be675740ff48d3ddd9 |
User & Date: | rkeene on 2016-02-15 06:17:41 |
Other Links: | manifest | tags |
Context
2016-02-15
| ||
06:20 | ChromeOS: Pass PIN prompt back to the user (unused for now) check-in: b97c4963e4 user: rkeene tags: trunk | |
06:17 | ChromeOS: Add new PIN to requests to sign once we gathered a new PIN check-in: ae9cfddbd2 user: rkeene tags: trunk | |
06:16 | ChromeOS: Start trying to sign data or send it back as needing a PIN or unsignable check-in: a90efdf98f user: rkeene tags: trunk | |
Changes
Modified build/chrome/cackey.js from [dece8c3884] to [f054a4b4b3].
175 175 console.log("[cackey] The PIN dialog was closed without gathering a PIN, treating it as a failure."); 176 176 177 177 tmpMessageEvent.data.status = "error"; 178 178 tmpMessageEvent.data.error = "PIN window closed without a PIN being provided"; 179 179 180 180 cackeyMessageIncoming(tmpMessageEvent); 181 181 } else { 182 + tmpMessageEvent.data.originalrequest.pin = pinWindowPINValue; 183 + 182 184 cackeyHandle.postMessage(tmpMessageEvent.data.originalrequest); 183 185 } 184 186 185 187 delete cackeyMessagesToRetry[messageIdx]; 186 188 } 187 189 188 190 return;