mirror of https://github.com/status-im/BearSSL.git
Some documentation fixes.
This commit is contained in:
parent
fa0b7bbe90
commit
8ef7680081
2
Doxyfile
2
Doxyfile
|
@ -771,7 +771,7 @@ WARN_LOGFILE =
|
|||
# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
|
||||
# Note: If this tag is empty the current directory is searched.
|
||||
|
||||
INPUT = inc/bearssl.h inc/bearssl_aead.h inc/bearssl_block.h inc/bearssl_ec.h inc/bearssl_hash.h inc/bearssl_hmac.h inc/bearssl_pem.h inc/bearssl_prf.h inc/bearssl_rand.h inc/bearssl_rsa.h inc/bearssl_ssl.h inc/bearssl_x509.h
|
||||
INPUT = inc/bearssl.h inc/bearssl_aead.h inc/bearssl_block.h inc/bearssl_ec.h inc/bearssl_hash.h inc/bearssl_hmac.h inc/bearssl_kdf.h inc/bearssl_pem.h inc/bearssl_prf.h inc/bearssl_rand.h inc/bearssl_rsa.h inc/bearssl_ssl.h inc/bearssl_x509.h
|
||||
|
||||
# This tag can be used to specify the character encoding of the source files
|
||||
# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
|
||||
|
|
17
README.txt
17
README.txt
|
@ -5,15 +5,16 @@ The most up-to-date documentation is supposed to be available on the
|
|||
|
||||
# Disclaimer
|
||||
|
||||
BearSSL is for now considered alpha-level software. This means that it
|
||||
probably still has some bugs, possibly very serious ones (e.g. buffer
|
||||
overflows -- one of the perks of using C as programming language). It
|
||||
still lacks some functionalities. The API will probably change and may
|
||||
break both source and binary compatibility.
|
||||
BearSSL is considered beta-level software. Most planned functionalities
|
||||
are implemented; new evolution may still break both source and binary
|
||||
compatibility.
|
||||
|
||||
In other words, you would be quite mad to use it for any production
|
||||
purpose. Right now, this is for learning, testing and possibly
|
||||
contributing.
|
||||
Using BearSSL for production purposes would be a relatively bold but not
|
||||
utterly crazy move. BearSSL is free, open-source software, provided
|
||||
without any guarantee of fitness or reliability. That being said, it
|
||||
appears to behave properly, and only minor issues have been found (and
|
||||
fixed) so far. You are encourage to inspect its API and code for
|
||||
learning, testing and possibly contributing.
|
||||
|
||||
The usage license is explicited in the `LICENSE.txt` file. This is the
|
||||
"MIT license". It can be summarised in the following way:
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <stdint.h>
|
||||
|
||||
#include "bearssl_block.h"
|
||||
#include "bearssl_hash.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
|
@ -353,8 +354,8 @@ extern const br_prng_class br_aesctr_drbg_vtable;
|
|||
*
|
||||
* The `aesctr` parameter defines the underlying AES/CTR implementation.
|
||||
*
|
||||
* \param ctx HMAC_DRBG context to initialise.
|
||||
* \param digest_class vtable for the underlying hash function.
|
||||
* \param ctx AESCTR_DRBG context to initialise.
|
||||
* \param aesctr vtable for the AES/CTR implementation.
|
||||
* \param seed initial seed (can be `NULL` if `seed_len` is zero).
|
||||
* \param seed_len initial seed length (in bytes).
|
||||
*/
|
||||
|
|
|
@ -1317,6 +1317,7 @@ br_rsa_compute_pubexp br_rsa_compute_pubexp_get_default(void);
|
|||
*
|
||||
* \param d destination buffer (or `NULL`).
|
||||
* \param sk RSA private key.
|
||||
* \param pubexp the public exponent.
|
||||
* \return the private exponent length (in bytes), or 0.
|
||||
*/
|
||||
typedef size_t (*br_rsa_compute_privexp)(void *d,
|
||||
|
@ -1329,6 +1330,7 @@ typedef size_t (*br_rsa_compute_privexp)(void *d,
|
|||
*
|
||||
* \param d destination buffer (or `NULL`).
|
||||
* \param sk RSA private key.
|
||||
* \param pubexp the public exponent.
|
||||
* \return the private exponent length (in bytes), or 0.
|
||||
*/
|
||||
size_t br_rsa_i15_compute_privexp(void *d,
|
||||
|
@ -1341,6 +1343,7 @@ size_t br_rsa_i15_compute_privexp(void *d,
|
|||
*
|
||||
* \param d destination buffer (or `NULL`).
|
||||
* \param sk RSA private key.
|
||||
* \param pubexp the public exponent.
|
||||
* \return the private exponent length (in bytes), or 0.
|
||||
*/
|
||||
size_t br_rsa_i31_compute_privexp(void *d,
|
||||
|
|
Loading…
Reference in New Issue