(Object o)
| 38 | } |
| 39 | |
| 40 | @Override |
| 41 | public boolean equals(Object o) |
| 42 | { |
| 43 | if (this == o) |
| 44 | { |
| 45 | return true; |
| 46 | } |
| 47 | if (o == null || getClass() != o.getClass()) |
| 48 | { |
| 49 | return false; |
| 50 | } |
| 51 | GroupKeySet that = (GroupKeySet)o; |
| 52 | return secretSize == that.secretSize && suite.equals(that.suite) && encryptionSecretCommit.equals(that.encryptionSecretCommit); |
| 53 | } |
| 54 | |
| 55 | void initRatchets(LeafIndex sender) |
| 56 | throws IOException, IllegalAccessException |