From 25a090d398c94cd74be5b96839d392a89d0be3e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20K=C3=B6rber?= Date: Tue, 5 Dec 2017 22:08:53 +0100 Subject: [PATCH] Fix typo --- src/site/markdown/usage/order.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/markdown/usage/order.md b/src/site/markdown/usage/order.md index 28290d78..11b0669a 100644 --- a/src/site/markdown/usage/order.md +++ b/src/site/markdown/usage/order.md @@ -8,7 +8,7 @@ To do so, prepare a PKCS#10 CSR file. A single domain may be set as _Common Name CSR files can be generated with command line tools like `openssl`. Unfortunately the standard Java does not offer classes for that, so you'd have to resort to [Bouncy Castle](http://www.bouncycastle.org/java.html) if you want to create a CSR programmatically. In the `acme4j-utils` module, there is a [`CSRBuilder`](../apidocs/org/shredzone/acme4j/util/CSRBuilder.html) for your convenience. You can also use [`KeyPairUtils`](../apidocs/org/shredzone/acme4j/util/KeyPairUtils.html) for generating a new key pair for your domain. -> __Important:__ Do not just use your account key pair as domain key pair, but always generate a separate pair of keys! +> __Important:__ Do not just use your account key pair as domain key pair, but always generate separate key pairs! ```java KeyPair domainKeyPair = ... // KeyPair to be used for HTTPS encryption