EnglishFrenchSpanish

OnWorks favicon

seccure-encrypt - Online in the Cloud

Run seccure-encrypt in OnWorks free hosting provider over Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

This is the command seccure-encrypt that can be run in the OnWorks free hosting provider using one of our multiple free online workstations such as Ubuntu Online, Fedora Online, Windows online emulator or MAC OS online emulator

PROGRAM:

NAME


seccure - SECCURE Elliptic Curve Crypto Utility for Reliable Encryption

SYNOPSIS


seccure-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]

DESCRIPTION


The 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.

COMMANDS


seccure-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


-c curve
Use elliptic curve curve. Available are: secp112r1, secp128r1, secp160r1,
secp192r1/nistp192, secp224r1/nistp224, secp256r1/nistp256, secp384r1/nistp384,
secp521r1/nistp521, brainpoolp160r1, brainpoolp192r1, brainpoolp224r1,
brainpoolp256r1, brainpoolp320r1, brainpoolp384r1, and brainpoolp512r1. The curve
name may be abbreviated by any non-ambiguous substring (for instance it is
suggested to specify p224 for the secp224r1/nistp224 curve). The default curve is
p160, which provides reasonable security for everyday use. (See also HOW TO CHOOSE
THE CURVE.)

Note: If a public key is given on the command line, for all SECP and NIST curves
seccure can determine the corresponding curve on its own. It is then unnecessary to
specify the curve explicitly. Brainpool curves cannot be recognized automatically.

-F pwfile
Don't prompt for a passphrase; instead, take the first text line of pwfile.

-m maclen
Set the MAC length to maclen bits. Only multiples of 8 in the range from 0 to 256
are allowed. The default MAC length is 80 bits, which provides a reasonable level
of integrity protection for everyday use.

-i infile
Read from infile instead of STDIN.

-o outfile
Write to outfile instead of STDOUT.

-s sigfile
For seccure-sign: Write signature to sigfile instead of STDERR.

For seccure-verify: Read signature from sigfile instead of using sig.

-f Filter mode: Copy all data read from STDIN verbatim to STDOUT (eventually attaching
or detaching a signature in -a mode).

-b Binary mode: Read/write signatures as binary strings. This leads to very compact
signatures.

-a Append mode:

For seccure-sign: Append signature to the end of the document. This enforces -f
mode.

For seccure-verify: Detach signature from the end of the document.

-d Double prompt mode: When reading a passphrase from the console: prompt twice and
assure the phrases are the same.

-v Verbose mode: Print some extra information.

-q Quiet mode: Disable all unnecessary output.

EXIT STATUS


All 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.

EXAMPLE


Given the passphrase 'seccure is secure', run

seccure-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 ESTABLISHMENT


seccure-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 CURVE


The 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.

ALGORITHMS


seccure 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.

Use seccure-encrypt online using onworks.net services


Free Servers & Workstations

Download Windows & Linux apps

  • 1
    QNAP NAS GPL Source
    QNAP NAS GPL Source
    GPL source for QNAP Turbo NAS.
    Audience: Developers. User interface:
    Web-based. Programming Language: C,
    Java. Categories:System, Storage,
    Operating System Ker...
    Download QNAP NAS GPL Source
  • 2
    deep-clean
    deep-clean
    A Kotlin script that nukes all build
    caches from Gradle/Android projects.
    Useful when Gradle or the IDE let you
    down. The script has been tested on
    macOS, but ...
    Download deep-clean
  • 3
    Eclipse Checkstyle Plug-in
    Eclipse Checkstyle Plug-in
    The Eclipse Checkstyle plug-in
    integrates the Checkstyle Java code
    auditor into the Eclipse IDE. The
    plug-in provides real-time feedback to
    the user about viol...
    Download Eclipse Checkstyle Plug-in
  • 4
    AstrOrzPlayer
    AstrOrzPlayer
    AstrOrz Player is a free media player
    software, part based on WMP and VLC. The
    player is in a minimalist style, with
    more than ten theme colors, and can also
    b...
    Download AstrOrzPlayer
  • 5
    movistartv
    movistartv
    Kodi Movistar+ TV es un ADDON para XBMC/
    Kodi que permite disponer de un
    decodificador de los servicios IPTV de
    Movistar integrado en uno de los
    mediacenters ma...
    Download movistartv
  • 6
    Code::Blocks
    Code::Blocks
    Code::Blocks is a free, open-source,
    cross-platform C, C++ and Fortran IDE
    built to meet the most demanding needs
    of its users. It is designed to be very
    extens...
    Download Code::Blocks
  • More »

Linux commands

  • 1
    abidw
    abidw
    abidw - serialize the ABI of an ELF
    file abidw reads a shared library in ELF
    format and emits an XML representation
    of its ABI to standard output. The
    emitted ...
    Run abidw
  • 2
    abilint
    abilint
    abilint - validate an abigail ABI
    representation abilint parses the native
    XML representation of an ABI as emitted
    by abidw. Once it has parsed the XML
    represe...
    Run abilint
  • 3
    core-cleanup
    core-cleanup
    core-cleanup - clean-up script for CORE
    DESCRIPTION: usage: core-cleanup [-d
    [-l]] Clean up all CORE namespaces
    processes, bridges, interfaces, and
    session dir...
    Run core-cleanup
  • 4
    core-daemon
    core-daemon
    core-daemon - CORE daemon manages
    emulation sessions started from GUI or
    scripts ...
    Run core-daemon
  • 5
    g++-4.9
    g++-4.9
    gcc - GNU project C and C++ compiler ...
    Run g++-4.9
  • 6
    g++-5
    g++-5
    gcc - GNU project C and C++ compiler ...
    Run g++-5
  • More »

Ad