MCPcopy Index your code
hub / github.com/bcgit/bc-java / equals

Method equals

mls/src/main/java/org/bouncycastle/mls/GroupKeySet.java:40–53  ·  view source on GitHub ↗
(Object o)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

getClassMethod · 0.80
equalsMethod · 0.65

Tested by

no test coverage detected