Changes between Version 8 and Version 9 of KeySetup
- Timestamp:
- Jan 23, 2017, 9:32:40 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
KeySetup
v8 v9 1 1 = File signing utilities = 2 2 3 Use '''sign_executable''' to sign executable files: 3 NOTE: the standard build will make versions with MySQL lib dependencies. 4 If you need a version without this dependency, 5 do '''make -f makefile_sign_executable''' in tools/; 6 this will make both programs. 4 7 5 {{{ 6 sign_executable file_to_sign private_key_file > signature_file 7 }}} 8 sign_executable is compiled in the lib/ directory, 9 and installed in your project's bin/ directory. 10 It writes the signature to stdout. 8 11 9 12 10 == Creating encryption keys == … … 41 39 crypt_prog -convkey o2b/b2o priv/pub input_file output_file:: 42 40 Convert a key from OpenSSL form to/from BOINC form. 41 42 == Code signing program == 43 Use '''sign_executable''' to sign executable files. 44 It's exactly the same as crypt_prog --sign. 45 46 {{{ 47 sign_executable file_to_sign private_key_file > signature_file 48 }}} 49 sign_executable is compiled in the lib/ directory, 50 and installed in your project's bin/ directory. 51 It writes the signature to stdout.