|
NAMEseccure - SECCURE Elliptic Curve Crypto Utility for Reliable EncryptionSYNOPSISseccure-key [-c curve] [-F pwfile] [-d] [-v] [-q]seccure-encrypt [-m maclen] [-c curve] [-i infile] [-o outfile] [-v] [-q] key seccure-decrypt [-m maclen] [-c curve] [-i infile] [-o outfile] [-F pwfile] [-d] [-v] [-q] seccure-sign [-f] [-b] [-a] [-c curve] [-s sigfile] [-i infile] [-o outfile] [-F pwfile] [-d] [-v] [-q] seccure-verify [-f] [-b] [-a] [-c curve] [-s sigfile] [-i infile] [-o outfile] [-v] [-q] key [sig] seccure-signcrypt [-c sig_curve [-c enc_curve]] [-i infile] [-o outfile] [-F pwfile] [-d] [-v] [-q] key seccure-veridec [-c enc_curve [-c sig_curve]] [-i infile] [-o outfile] [-F pwfile] [-d] [-v] [-q] key seccure-dh [-c curve] [-v] [-q] DESCRIPTIONThe seccure toolset implements a selection of asymmetric algorithms based on elliptic curve cryptography (ECC). In particular it offers public key encryption / decryption, signature generation / verification and basic key establishment.ECC schemes offer a much better key size to security ratio than classical cryptosystems (RSA, DSA). Keys are short enough to make direct specification of keys on the command line possible (sometimes this is more convenient than the management of PGP-like key rings). seccure builds on this feature and therefore is the tool of choice whenever lightweight but nevertheless strong asymmetric cryptography -- independent of key servers, revocation certificates, the Web of Trust or even configuration files -- is required. COMMANDSseccure-key: Prompt for a passphrase and calculate the corresponding public key.seccure-encrypt: Encrypt a message with public key key. seccure-decrypt: Prompt for a passphrase and decrypt a seccure-encrypted message. seccure-sign: Prompt for a passphrase and digitally sign a message. seccure-verify: Verify signature sig with public key key. seccure-signcrypt: Sign a message first, encrypt it subsequently (in -b -a and -m 0 mode, respectively). This is basically a shortcut for two separate seccure invocations. seccure-veridec: Counterpart to signcryption. seccure-dh: Perform a Diffie-Hellman key exchange. OPTIONS
EXIT STATUSAll commands in the seccure software suite exit with a status of zero if the desired operation could be completed successfully. Any error leads to a nonzero exit code.EXAMPLEGiven the passphrase 'seccure is secure', runseccure-key to determine the corresponding public key (which is '2@DupCaCKykHBe-QHpAP%d%B[' on curve p160). To encrypt the file 'document.msg' with that key run seccure-encrypt -i document.msg -o document.enc '2@DupCaCKykHBe-QHpAP%d%B[' The message can be recovered with seccure-decrypt -i document.enc To sign the file run seccure-sign -i document.msg -s document.sig and enter the passphrase. The signature is stored in 'document.sig' and can be verified with seccure-verify -i document.msg -s document.sig '2@DupCaCKykHBe-QHpAP%d%B[' KEY ESTABLISHMENTseccure-dh performs an interactive Diffie-Hellman key exchange. Two instances have to be run in parallel; the token generated by the first instance is the input for the second one and vice versa. The output consists of two shared keys: it is guaranteed that no attacker can ever find out (more precisely, distinguished from random) the established key as soon as the two parties can confirm that both have the same verification key. The authentic comparision of the verification keys can, for example, be realized via signed messages or via telephone (using 'voice authentication').HOW TO CHOOSE THE CURVEThe number in the name of a curve measures its security level. Rule of thumb: the workload to 'break' a k-bit curve is 2^(k/2) approximately (example: it takes about 2^112 steps to break secp224r1). If the 80 bit security of the default curve doesn't seem sufficient, choosing a stronger curve (p192 and upwards) may, of course, be considered. But the suggestion remains: p160 offers reasonable security for everyday use. Warning: the curves p112 and p128 do not satisfy demands for long-time security.ALGORITHMSseccure uses derivated versions of ECIES (Elliptic Curve Integrated Encryption Scheme), ECDSA (Elliptic Curve Digital Signature Algorithm) and ECDH (Elliptic Curve Diffie-Hellman) as encryption, signature and key establishment scheme, respectively. For the symmetric parts (bulk encryption, hashing, key derivation, HMAC calculation) seccure builds on AES256 (in CTR mode), SHA256 and SHA512. To my best knowledge no part of seccure is covered by patents. See the file PATENTS for an explicit patent statement.AUTHORThis software (v0.5) was written by B. Poettering (seccure AT point-at-infinity.org) in 2006-2014. It is released under the terms of the GNU Lesser General Public License (LGPLv3). Find the latest version of seccure on the project's homepage: http://point-at-infinity.org/seccure/.
Visit the GSP FreeBSD Man Page Interface. |