File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,16 @@ kpa.associate();
35
35
You'll get an AssociateID and the public key of an IDKeypair created during the initial connection.
36
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
37
38
+ next steps:
39
+ ``` java
40
+ var id= kpa. getAssociateId();
41
+ var keyPair = kpa. getIdKeyPairPublicKey();
42
+
43
+ var idKeyMap = List . of(Map . of(" id" , id, " key" , keyPair)); // java 21
44
+ var logins = kpa. getLogins(" https://login.url.com/" , " " , true , idKeyMap);
45
+ // System.out.println(logins) // nested map with credentials
46
+ ```
47
+
38
48
# keepassxc-protocol
39
49
Communication with KeePassXC happens via the KeePassXC protocol. Currently, the following functionality is implemented:
40
50
* ` change-public-keys ` : Request for passing public keys from client to server and back.
You can’t perform that action at this time.
0 commit comments