From af1d35d394f2e037ed36d0d5c1a05d04fa618b85 Mon Sep 17 00:00:00 2001 From: Paul Schaub Date: Thu, 28 Jun 2018 15:49:32 +0200 Subject: [PATCH] un-escape <> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e67b30ff..eb014973 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ The first thing you probably want to do is generate you some nice tasty Key Pair ``` PGPSecretKeyRing keyRing = PGPainless.generateKeyRing() - .simpleRsaKeyRing("Juliet <juliet@montague.lit>", RsaLength._4096); + .simpleRsaKeyRing("Juliet ", RsaLength._4096); ``` but feel free to explore the API further. PGPainless allows you to create Key Pairs consisting of a master key plus several sub keys, even with different algorithms at the same time!