--- title: "![SlunkCrypt](etc/img/SlunkCrypt-Logo.png)" --- Introduction ============ SlunkCrypt is an experimental cryptography library and command-line tool. See [*encryption algorithm*](#encryption-algorithm) for details. Legal Warning ============= Use of SlunkCrypt may be illegal in countries where encryption is outlawed. We believe it is legal to use SlunkCrypt in many countries all around the world, but we are not lawyers, and so if in doubt you should seek legal advice before downloading it. You may find useful information at [cryptolaw.org](http://www.cryptolaw.org/), which collects information on cryptography laws in many countries. Command-line Usage ================== This section describes the SlunkCypt command-line application. Synopsis -------- The SlunkCypt command-line program is invoked as follows: slunkcrypt --encrypt [[@][:]] slunkcrypt --decrypt [[@][:]] slunkcrypt --make-pw [] Commands -------- One of the following commands must be chosen: - **`--encrypt` (`-e`):** Run application in ***encrypt*** mode. Reads the given *plaintext* and generates *ciphertext*. - **`--decrypt` (`-d`):** Run application in ***decrypt*** mode. Reads the given *ciphertext* and restores *plaintext*. - **`--make-pw` (`-p`):** Generate and output a "strong" random passphrase suitable for use with SlunkCrypt. - **`--self-test` (`-t`):** Run application in ***self-test*** mode. Program will exit when test is completed. Options ------- The following options are available: - **``**: * The passphrase used to "protect" the message. The same passphrase must be used for both, ***encrypt*** and ***decrypt*** mode. * It will only be possible decrypt the ciphertext, if the "correct" passphrase is known. * Use **`--make-pw`** to generate a random passphrase. The passphrase must be kept confidential under all circumstances! * **Syntax:** - If the passphrase is prefixed with an **`@`** character, then it specifies the file to read the passphrase from. - If the passphrase is set to **`@-`**, then the passphrase is read from the standard input stream. - If the passphrase is prefixed with an **`:`** character, then the leading character is ignored; use if passphrase contains **`@`** character. - If the parameter is *omitted*, then the passphrase is read from the `SLUNK_PASSPHRASE` environment variable. * *Note:* In order to thwart brute force attacks, it is recommended to choose a "random" password that is at least 12 characters in length and that consists of upper-case characters, lower-case characters, digits as well as other "special" characters. - **``**: * In ***encrypt*** mode, specifies the *plaintext* (unencrypted information) file that is to be encrypted. * In ***decrypt*** mode, specifies the *ciphertext* (result of encryption) file that is to be decrypted. - **``**: * In ***encrypt*** mode, specifies the file where the *ciphertext* (result of encryption) will be stored. * In ***decrypt*** mode, specifies the file where the *plaintext* (unencrypted information) will be stored. - **``**: * Speicifes the length of the passphrase to be generated, in characters. If *not* specified, defaults to 24. Examples -------- Examples on how to use the SlunkCrypt command-line application: 1. Let's generate a new secure password first: slunkcrypt --make-pw Example output: cdG2=fh &input, std::vector &output ); ***Parameters:*** * `input` A reference to the `std::vector` instance containing the next chunk of the plaintext to be encrypted. This can be arbitrary binary data, e.g. UTF-8 encoded text. NULL bytes are **not** treated specially. * `output` A reference to the `std::vector` instance where the ciphertext that corresponds to the given plaintext will be stored. The `output.size()` must be *greater than or equal* to `input.size()`. If the `output.size()` is larger than the `input.size()`, then only the first `input.size()` elements of `output` will be filled with encrypted data! ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. The function fails, if the *output* `std::vector` is too small. #### SlunkCryptEncr::encrypt_inplace() [1] Encrypt the next message chunk, using a single buffer. bool encrypt_inplace( uint8_t* const buffer, size_t length ); ***Parameters:*** * `buffer` A pointer to the buffer initially containing the next chunk of the plaintext to be encrypted. The plaintext is given as a byte array (`uint8_t`). This can be arbitrary binary data, e.g. UTF-8 encoded text. NULL bytes are **not** treated specially. The ciphertext chunk that corresponds to the given plaintext chunk will be stored to the *same* buffer, thus replacing the plaintext data. The buffer must initially contain *at least* `length` bytes of input data; the first `length` bytes of the buffer will be overwritten with the encrypted data. If the buffer is longer than `length` bytes, then only the first `length` bytes will be processed and overwritten. * `length` The length of the plaintext chunk initially contained in the input/output buffer given by the `buffer` parameter, in bytes. At the same time, this determines the portion of the input/output buffer that will be overwritten with encrypted data, in bytes. ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. #### SlunkCryptEncr::encrypt_inplace() [2] Encrypt the next message chunk, using a single container (`std::vector`). bool encrypt_inplace( std::vector &buffer ); ***Parameters:*** * `buffer` A reference to the `std::vector` initially containing the next chunk of the plaintext to be encrypted. This can be arbitrary binary data, e.g. UTF-8 encoded text. NULL bytes are **not** treated specially. The ciphertext chunk that corresponds to the given plaintext chunk will be stored to the *same* `std::vector`, thus replacing all the plaintext data. ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. #### SlunkCryptEncr::get_nonce() Retrieve the random nonce that is used to encrypt the message. uint64_t get_nonce(); ***Return value:*** * Returns the nonce that is used to encrypt the message. The purpose of the nonce is to ensure that each message will be encrypted differently, even when the same password is used to encrypt multiple (possibly identical) messages. Therefore, a new random nonce must be chosen for each message! It is not necessary to keep the nonce confidential, but the same nonce must be used for both, encryption and decryption. Typically, the nonce is stored/transmitted alongside the ciphertext. *Note:* The `SlunkCryptEncr` class automatically generates a new, random nonce for each message to be encrypted. Use *this* function to retrieve that nonce, so that it can be passed to `SlunkCryptDecr` for decryption later. ### SlunkCryptDecr Class for *decrypting* data using the SlunkCrypt library. #### Constructor Create and initialize a new **``SlunkCryptDecr``** instance. SlunkCryptDecr::SlunkCryptDecr( const uint64_t nonce, const std::string& passwd ); ***Parameters:*** * `nonce` The *nonce* (number used once) to be used for the decryption process. The purpose of the nonce is to ensure that each message will be encrypted differently, even when the same password is used to encrypt *multiple* (possibly identical) messages. Therefore, a new *random* nonce **must** be chosen for each message! It is *not* necessary to keep the nonce confidential, but the same nonce **must** be used for both, encryption *and* decryption. Typically, the nonce is stored/transmitted alongside the ciphertext. *Note:* The `SlunkCryptEncr` class automatically generates a new, random nonce for each message to be encrypted. Use `SlunkCryptEncr::get_nonce()` to retrieve that nonce, so that it can be passed to `SlunkCryptDecr` for decryption later. * `passwd` The password to "protect" the message. The password is given as an `std::string`, e.g. UTF-8 encoded characters. The same password **may** be used to encrypt *multiple* messages. Also, the same password **must** be used for both, encryption *and* decryption; it will *only* be possible decrypt the ciphertext, if the "correct" password is known. The password must be kept confidential under all circumstances! *Note:* In order to thwart *brute force* attacks, it is recommended to choose a "random" password that is at least 12 characters in length and that consists of upper-case characters, lower-case characters, digits as well as other "special" characters. ***Exceptions:*** * Throws `std::runtime_error`, if the SlunkCrypt context could not be allocated. #### SlunkCryptDecr::decrypt() [1] Decrypt the next message chunk, using separate input/output buffers. bool decrypt( const uint8_t* const input, uint8_t* const output, size_t length ); ***Parameters:*** * `input` A pointer to the *input* buffer containing the next chunk of the ciphertext to be decrypted. The ciphertext is given as a byte array (`uint8_t`). The *input* buffer must contain *at least* `length` bytes of data. If the buffer is longer than `length` bytes, then only the first `length` bytes will be processed and the remainder is ignored! * `output` A pointer to the *output* buffer where the plaintext chunk that corresponds to the given ciphertext chunk will be stored. The plaintext is stored as a byte array (`uint8_t`); it has the same length as the ciphertext data. The *output* buffer must provide sufficient space for storing *at least* `length` bytes of decrypted data. If the buffer is longer than `length` bytes, then only the first `length` bytes of the buffer will be filled with decrypted data! * `length` The length of the ciphertext chunk contained in the *input* buffer given by the `input` parameter, in bytes. At the same time, this determines the minimum required size of the *output* buffer given by the `output` parameters, in bytes. ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. #### SlunkCryptDecr::decrypt() [2] Decrypt the next message chunk, using separate input/output containers (`std::vector`). bool decrypt( const std::vector &input, std::vector &output ); ***Parameters:*** * `input` A reference to the `std::vector` instance containing the next chunk of the ciphertext to be decrypted. * `output` A reference to the `std::vector` instance where the plaintext that corresponds to the given ciphertext will be stored. The `output.size()` must be *greater than or equal* to `input.size()`. If the `output.size()` is greater than the `input.size()`, then only the first `input.size()` elements of `output` will be filled with decrypted data! ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. The function fails, if the *output* `std::vector` is too small. #### SlunkCryptDecr::decrypt_inplace() [1] Decrypt the next message chunk, using a single buffer. bool decrypt_inplace( uint8_t* const buffer, size_t length ); ***Parameters:*** * `buffer` A pointer to the buffer initially containing the next chunk of the ciphertext to be decrypted. The ciphertext is given as a byte array (`uint8_t`). The plaintext that corresponds to the given ciphertext will be stored to the *same* buffer, replacing the plaintext data. The buffer must initially contain *at least* `length` bytes of input data; the first `length` bytes of the buffer will be overwritten with the encrypted data. If the buffer is longer than `length` bytes, then only the first `length` bytes will be processed and overwritten. * `length` The length of the ciphertext chunk initially contained in the input/output buffer given by the `buffer` parameter, in bytes. At the same time, this determines the portion of the input/output buffer that will be overwritten with decrypted data, in bytes. ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. #### SlunkCryptDecr::decrypt_inplace() [2] Decrypt the next message chunk, using a single container (`std::vector`). bool decrypt_inplace( std::vector &buffer ); ***Parameters:*** * `buffer` A reference to the `std::vector` initially containing the next chunk of the ciphertext to be decrypted. The plaintext that corresponds to the given ciphertext will be stored to the *same* `std::vector`, replacing all the ciphertext data. ***Return value:*** * If successful, `true` is returned; otherwise `false` is returned. Thread safety ------------- The following functions are fully "thread-safe" and thus may safely be called by *any* thread at *any* time ***without*** the need for synchronization: * `slunkcrypt_alloc()` * `slunkcrypt_random_bytes()` * `slunkcrypt_bzero()` * `SlunkCryptEncr::SlunkCryptEncr()` * `SlunkCryptDecr::SlunkCryptDecr()` The following functions are "reentrant" and thus may safely be called by *any* thread at *any* time, ***without*** the need for synchronization, provided that each `slunkcrypt_t`, `SlunkCryptEncr` or `SlunkCryptDecr` instance is "owned" (i.e. accessed *exclusively*) and by a *single* thread: * `slunkcrypt_reset()` * `slunkcrypt_free()` * `slunkcrypt_encrypt()` * `slunkcrypt_encrypt_inplace()` * `slunkcrypt_decrypt()` * `slunkcrypt_decrypt_inplace()` * `SlunkCryptEncr::encrypt()` * `SlunkCryptEncr::encrypt_inplace()` * `SlunkCryptEncr::get_nonce()` * `SlunkCryptDecr::decrypt()` * `SlunkCryptDecr::decrypt_inplace()` ***Note:*** Iff the same `slunkcrypt_t`, `SlunkCryptEncr` or `SlunkCryptDecr` instance needs to be shared across *multiple* threads, then the application **must** *serialize* any invocations of the above functions (on the shared instance), by an *explicit* "mutex" synchronization! License ======= This work has been released under the **CC0 1.0 Universal** license. For details, please refer to: