Home | History | Annotate | Download | only in libtomcrypt

Lines Matching defs:Simple

153 Not only did I strive to make a consistent and simple API to work with but I also attempted to make the library
158 On top of making the build simple and the API approachable I've also attempted for a reasonably high level of
226 In general the API is very simple to memorize and use. Most of the functions return either {\bf void} or {\bf int}. Functions
495 \subsection{Simple Encryption Demonstration}
781 CBC or Cipher Block Chaining mode is a simple mode designed to prevent trivial forms of replay and swap attacks on ciphers.
797 encrypted under the same key replay and swap attacks are infeasible. CTR mode may look simple but it is as secure
848 The library provides simple support routines for handling CBC, CTR, CFB, OFB and ECB encoded messages. Assuming the mode
1901 length. This provides a simple size you can set your automatic arrays to that will not get overrun.
2764 Below is a simple snippet to read 10 bytes from Yarrow. It is important to note that this snippet is {\bf NOT} secure since
3062 PKCS \#1 v1.5 padding is so simple that both signature and encryption padding are performed by the same function. Note: the
3663 LibTomCrypt uses a unique format for ECC public and private keys. While ANSI X9.63 partially specifies key formats, it does it in a less than ideally simple manner. \
4316 For small or simple sequences an encoding or decoding can be performed with one of the following two functions.
4935 Two simple ways to prevent trivial errors is to prevent overflows, and to check the return values. All of the functions
4939 Also, virtually all of the functions return an error code or {\bf CRYPT\_OK}. You should detect all errors, as simple
5016 The library is not fully thread safe but several simple precautions can be taken to avoid any problems. The registry functions
5021 thread has its own state variables then they will not affect each other, and are fully thread safe. This is fairly simple with symmetric ciphers
5357 development simple. In most dependent routines all an end developer has to do is register\_XXX() the descriptor and they are set.