Further peer review improvements for documentation.

pull/297/head
David Garske 2022-02-24 11:30:44 -08:00
parent 45a13e1491
commit d646f7a816
2 changed files with 5 additions and 2 deletions

View File

@ -261,10 +261,13 @@ Crypto Callbacks to show signing against HSM/TPM
Tested with these wolfSSL build options: Tested with these wolfSSL build options:
``` ```sh
./autogen.sh # If cloned from GitHub
./configure --enable-certreq --enable-certgen --enable-certext --enable-cryptocb ./configure --enable-certreq --enable-certgen --enable-certext --enable-cryptocb
make make
make check
sudo make install sudo make install
sudo ldconfig # required on some targets
``` ```
### `csr_cryptocb` Example output ### `csr_cryptocb` Example output

View File

@ -515,7 +515,7 @@ int main(int argc, char** argv)
return gen_csr(argv[1]); return gen_csr(argv[1]);
#else #else
printf("Please compile wolfSSL with --enable-certreq --enable-certgen --enable-certext --enable-cryptocb\n"); printf("Please compile wolfSSL with `--enable-certreq --enable-certgen --enable-certext --enable-cryptocb` and RSA, ECC or ED25519\n");
return 0; return 0;
#endif #endif
} }