aboutsummaryrefslogtreecommitdiffstats
path: root/whisper
diff options
context:
space:
mode:
authorVlad <gluk256@gmail.com>2018-02-27 22:45:00 +0800
committerVlad <gluk256@gmail.com>2018-02-27 22:45:00 +0800
commitdadf4d53abd8be13f59fb09820712d74ce8f89a7 (patch)
treec650a764bdd85d2a20035f50e46b0870e534523c /whisper
parent4c845bdc271c46706ea4af248a1efec8683dc53a (diff)
downloadgo-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar.gz
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar.bz2
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar.lz
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar.xz
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.tar.zst
go-tangerine-dadf4d53abd8be13f59fb09820712d74ce8f89a7.zip
whisper: mailserver no longer supports the signature vaidation
Diffstat (limited to 'whisper')
-rw-r--r--whisper/mailserver/mailserver.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/whisper/mailserver/mailserver.go b/whisper/mailserver/mailserver.go
index 6555fd5c0..a889c2bd2 100644
--- a/whisper/mailserver/mailserver.go
+++ b/whisper/mailserver/mailserver.go
@@ -17,7 +17,6 @@
package mailserver
import (
- "bytes"
"encoding/binary"
"fmt"
@@ -175,7 +174,10 @@ func (s *WMailServer) validateRequest(peerID []byte, request *whisper.Envelope)
if len(src)-len(peerID) == 1 {
src = src[1:]
}
- if !bytes.Equal(peerID, src) {
+
+ // if you want to check the signature, you can do it here. e.g.:
+ // if !bytes.Equal(peerID, src) {
+ if src == nil {
log.Warn(fmt.Sprintf("Wrong signature of p2p request"))
return false, 0, 0, topic
}