Skip to content

Commit

Permalink
go-ipfs-config: Merge pull request ipfs#18 from ipfs/feat/pubsub-mess…
Browse files Browse the repository at this point in the history
…age-signing

add message signing config options
  • Loading branch information
Stebalien committed Oct 26, 2018
2 parents 82e30ff + e0cf6b5 commit a6608e5
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions config/pubsub.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
package config

type PubsubConfig struct {
// Router can be either floodsub (legacy) or gossipsub (new and
// backwards compatible).
Router string

// DisableSigning disables message signing. Message signing is *enabled*
// by default.
DisableSigning bool

// StrictSignatureVerification enables strict signature verification.
// When enabled, unsigned messages will be rejected. Eventually, this
// will be made the default and this option will disappear. Once this
// happens, networks will either need to completely disable or
// completely enable message signing.
StrictSignatureVerification bool
}

0 comments on commit a6608e5

Please sign in to comment.