1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-16 08:34:53 +02:00

fixed readme?

This commit is contained in:
Tom J 2021-01-12 14:31:43 +00:00 committed by GitHub
parent 7303c9b47d
commit aaf48bfb0e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -41,7 +41,7 @@ The entry point to the API is the `PGPainless` class. Here you can find methods
The first thing you probably want to do is generate you some nice tasty Key Pairs. The most straight forward way to do so is by calling The first thing you probably want to do is generate you some nice tasty Key Pairs. The most straight forward way to do so is by calling
```java ```java
PGPSecretKeyRing keyRing = PGPainless.generateKeyRing() PGPKeyRing keyRing = PGPainless.generateKeyRing()
.simpleRsaKeyRing("Juliet <juliet@montague.lit>", RsaLength._4096); .simpleRsaKeyRing("Juliet <juliet@montague.lit>", RsaLength._4096);
``` ```