2002-09-10 17:04:05 +00:00
|
|
|
<title>Creating encryption keys</title>
|
|
|
|
<h2>Creating encryption keys</h2>
|
|
|
|
|
2002-09-20 21:17:47 +00:00
|
|
|
The following commands generate the file upload and code signing key pairs.
|
|
|
|
BOINC_KEY_DIR is the directory where the kays will be stored.
|
|
|
|
The code signing private key should be stored only on
|
|
|
|
a highly secure (e.g., a disconnected, physically secure) host.
|
|
|
|
<pre>
|
|
|
|
crypt_prog -genkey 1024 BOINC_KEY_DIR/upload_private BOINC_KEY_DIR/upload_public
|
|
|
|
crypt_prog -genkey 1024 BOINC_KEY_DIR/code_sign_private BOINC_KEY_DIR/code_sign_public
|
|
|
|
</pre>
|