Changes between Version 8 and Version 9 of SCU


Ignore:
Timestamp:
Oct 5, 2010, 3:55:36 PM (14 years ago)
Author:
fornasiero
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SCU

    v8 v9  
    111111==== SynapseKeyStorage tool
    112112
     113This tool manages the private key storage and permits to export the public keys. This tool generates and uses the configuration file "$HOME/synapse-config.txt". The invacation syntax is the following:
     114{{{
    113115 java net.tinyos.signet.SynapseKeyStorage [-generate <# of security bits for authentication> <#of uses per key> <# of security bits for encryption> <# of security bits for DoS protection> <filename>] [-get-public <key storage filename> <destination filename>]
     116}}}
     117If the "generate" option is given, the private keys are generated, depending on the given security parameters and stored in the given file.
     118If the "get-public" options is given, the public keys are generated from the private keys and stored in the given file.
    114119
    115 
    116  java net.tinyos.signet.SynapseKeyStorage -generate 80 30 128 128 /tmp/pippo/synapse-secret-keys.xml
    117  java net.tinyos.signet.SynapseKeyStorage -get-public /tmp/pippo/synapse-secret-keys.xml /tmp/pippo/synapse-public-keys.bin
     120Typically the command is invoked as following
     121{{{
     122 java net.tinyos.signet.SynapseKeyStorage -generate 80 30 128 128 $HOME/synapse-secret-keys.xml
     123 java net.tinyos.signet.SynapseKeyStorage -get-public $HOME/synapse-secret-keys.xml $HOME/synapse-public-keys.bin
     124}}}
    118125
    119126==== KeyVolumeManagerClient tool