We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b4e5f commit 68ce684Copy full SHA for 68ce684
1 file changed
src/MLS/Commit/UpdatePathNodeInterface.php
@@ -13,16 +13,15 @@
13
14
namespace MLS\Commit;
15
16
-interface UpdatePathInterface
+interface UpdatePathNodeInterface
17
{
18
/**
19
- * The leaf node presented in the path (serialized).
+ * Public key for this path node (serialized public key bytes).
20
*/
21
- public function getLeafNode(): string;
+ public function getPublicKey(): string;
22
23
24
- * Array of UpdatePathNodeInterface.
25
- * @return UpdatePathNodeInterface[]
+ * Encrypted path secret for this node (serialized bytes).
26
27
- public function getNodes(): array;
+ public function getEncryptedPathSecret(): string;
28
}
0 commit comments