aboutsummaryrefslogtreecommitdiffstats
path: root/whisper
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-15 23:12:34 +0800
committerobscuren <geffobscura@gmail.com>2014-12-15 23:12:34 +0800
commitef4135eabe5cb25f8972371c5681e1611ce0cde9 (patch)
tree7cf285886051954d80bd4a57c30310a5e1cff1bc /whisper
parentc3ba4ace64a99d324b20b27574b5e5066ce14e54 (diff)
downloaddexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar.gz
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar.bz2
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar.lz
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar.xz
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.tar.zst
dexon-ef4135eabe5cb25f8972371c5681e1611ce0cde9.zip
Added topic utility functions to whisper
Diffstat (limited to 'whisper')
-rw-r--r--whisper/util.go27
1 files changed, 27 insertions, 0 deletions
diff --git a/whisper/util.go b/whisper/util.go
new file mode 100644
index 000000000..abef1d667
--- /dev/null
+++ b/whisper/util.go
@@ -0,0 +1,27 @@
+package whisper
+
+import "github.com/ethereum/go-ethereum/crypto"
+
+func hashTopic(topic []byte) []byte {
+ return crypto.Sha3(topic)[:4]
+}
+
+// NOTE this isn't DRY, but I don't want to iterate twice.
+
+// Returns a formatted topics byte slice.
+// data: unformatted data (e.g., no hashes needed)
+func Topics(data [][]byte) [][]byte {
+ d := make([][]byte, len(data))
+ for i, byts := range data {
+ d[i] = hashTopic(byts)
+ }
+ return d
+}
+
+func TopicsFromString(data []string) [][]byte {
+ d := make([][]byte, len(data))
+ for i, str := range data {
+ d[i] = hashTopic([]byte(str))
+ }
+ return d
+}