Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: kylehuff/buildcrx
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.2
Choose a base ref
...
head repository: kylehuff/buildcrx
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 19, 2014

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    kylekurz Kyle Kurz
    Copy the full SHA
    338a994 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 buildcrx.c
5 changes: 5 additions & 0 deletions buildcrx.c
Original file line number Diff line number Diff line change
@@ -57,6 +57,11 @@ int main(int argc, char *argv[])
printf("Extension name is %s, and will be output as %s\n", argv[1], output_filename);
FILE *output = fopen(output_filename,"wb");

// Initialize OpenSSL
OpenSSL_add_all_algorithms();
OpenSSL_add_all_ciphers();
OpenSSL_add_all_digests();

// sign the zip file
SHA_CTX sha1;
byte digest[SHA_DIGEST_LENGTH];