Skip to content

Commit 68ce684

Browse files
committed
Update UpdatePathNodeInterface.php
1 parent 59b4e5f commit 68ce684

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

src/MLS/Commit/UpdatePathNodeInterface.php

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@
1313

1414
namespace MLS\Commit;
1515

16-
interface UpdatePathInterface
16+
interface UpdatePathNodeInterface
1717
{
1818
/**
19-
* The leaf node presented in the path (serialized).
19+
* Public key for this path node (serialized public key bytes).
2020
*/
21-
public function getLeafNode(): string;
21+
public function getPublicKey(): string;
2222

2323
/**
24-
* Array of UpdatePathNodeInterface.
25-
* @return UpdatePathNodeInterface[]
24+
* Encrypted path secret for this node (serialized bytes).
2625
*/
27-
public function getNodes(): array;
26+
public function getEncryptedPathSecret(): string;
2827
}

0 commit comments

Comments
 (0)