We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aee5988 commit cf0e323Copy full SHA for cf0e323
README.md
@@ -35,9 +35,9 @@ kpa.associate();
35
You'll get an AssociateID and the public key of an IDKeypair created during the initial connection.
36
Both pieces of data combined are needed for further connections. As both are public data, there is no need to store them securely.
37
38
-next steps:
+Next steps:
39
```java
40
- var id=kpa.getAssociateId();
+ var id = kpa.getAssociateId();
41
var keyPair = kpa.getIdKeyPairPublicKey();
42
43
var idKeyMap = List.of(Map.of("id", id, "key", keyPair)); // java 21
0 commit comments