fuzzing with dvyukov/go-fuzz

This commit is contained in:
Hayden
2017-04-07 21:51:56 -07:00
parent d82edd84a2
commit b98534c112
98 changed files with 133 additions and 1 deletions

View File

@ -0,0 +1,10 @@
package exportable
import "github.com/hkparker/go-i2p/lib/common"
func Fuzz(data []byte) int {
destination := common.Destination(data)
destination.Base32Address()
destination.Base64()
return 0
}