Overview
Comment: | ChromeOS: Minor cleanup in the test case |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
925edeaa39a594a1a6c0e25e3c2dbe5c |
User & Date: | rkeene on 2016-02-15 08:30:36 |
Other Links: | manifest | tags |
Context
2016-02-15
| ||
08:31 | Updated to print an error in debug mode if we run across compressed certificates without zlib support available check-in: ecd7178afb user: rkeene tags: trunk | |
08:30 | ChromeOS: Minor cleanup in the test case check-in: 925edeaa39 user: rkeene tags: trunk | |
07:49 | Minor cleanup check-in: 43490cab39 user: rkeene tags: trunk | |
Changes
Modified build/chrome/cackey-chrome-test.c from [335a817cb9] to [257a2172b2].
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | + + + + + + | pinPrompt = strdup("Please enter your PIN: "); } printf("%s: ", pinPrompt); fflush(stdout); free(pinPrompt); pinPrompt = NULL; fgets(pin, sizeof(pin), stdin); while (strlen(pin) >= 1 && pin[strlen(pin) - 1] == '\n') { pin[strlen(pin) - 1] = '\0'; } signLength = sizeof(signBuffer); rvSign = cackey_chrome_signMessage(&certificates[idxCertificate], "Test", 4, signBuffer, &signLength, &pinPrompt, pin); } if (pinPrompt != NULL) { free(pinPrompt); } printf("Signed message \"Test\": %lu bytes (return value = %i)\n", signLength, rvSign); } cackey_chrome_freeCertificates(certificates, numCertificates); cackey_chrome_terminate(); |
︙ |