1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 19:44:01 +08:00

go-ipfs-config: feat: remove strict signing pubsub option.

It's still possible to disable signing. However, it's no longer possible to
enable signing _and_ disable strict signature verification.
This commit is contained in:
Steven Allen
2020-05-19 19:05:59 -07:00
parent eaf1cc8d18
commit ed0f306c2c

View File

@ -8,11 +8,4 @@ type PubsubConfig struct {
// 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
}