a41f938cec
As we have seen, dependencies version can prevent the build. We should user lock versions on dependencies that we know work: * Packages are vendored * Add Godep support * Added addtional install step in readme * Fix travis build error
25 lignes
413 o
Go
25 lignes
413 o
Go
// +build gofuzz
|
|
|
|
package securecookie
|
|
|
|
var hashKey = []byte("very-secret12345")
|
|
var blockKey = []byte("a-lot-secret1234")
|
|
var s = New(hashKey, blockKey)
|
|
|
|
type Cookie struct {
|
|
B bool
|
|
I int
|
|
S string
|
|
}
|
|
|
|
func Fuzz(data []byte) int {
|
|
datas := string(data)
|
|
var c Cookie
|
|
if err := s.Decode("fuzz", datas, &c); err != nil {
|
|
return 0
|
|
}
|
|
if _, err := s.Encode("fuzz", c); err != nil {
|
|
panic(err)
|
|
}
|
|
return 1
|
|
}
|