File: README

package info (click to toggle)
hare 0.26.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 7,352 kB
  • sloc: asm: 1,374; makefile: 123; sh: 117; lisp: 101
file content (18 lines) | stat: -rw-r--r-- 891 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
blowfish: Blowfish encryption support

The crypto::blowfish module provides an implementation of Bruce Schneier's
Blowfish encryption standard via the [[crypto::cipher::block]] interface. The
use of this algorithm is not recommended except for legacy use-cases; prefer
[[crypto::aes::]] when possible.

When combined with a block cipher mode from [[crypto::cipher::]], suitable
buffer lengths for static allocation are provided as constants such as
[[BLOCKSZ]].

This is a low-level module which implements cryptographic primitives. Direct use
of cryptographic primitives is not recommended for non-experts, as incorrect use
of these primitives can easily lead to the introduction of security
vulnerabilities. Non-experts are advised to use the high-level operations
available in the top-level [[crypto::]] module.

Be advised that Hare's cryptography implementations have not been audited.