소스 검색

testing against CodeDweller/mishmash, minor changes in preparation of testing Golang Threatable

master
William Dillon 3 년 전
부모
커밋
75fc6bd2db
1개의 변경된 파일11개의 추가작업 그리고 0개의 파일을 삭제
  1. 11
    0
      mishmash.go

+ 11
- 0
mishmash.go 파일 보기

@@ -85,3 +85,14 @@ func main() {
fmt.Printf("%08x\n", simpleMishmash)
}
*/
// example below used to validate output against C++ mishmash
/*
func main() {
buf := []byte("Hello world!")
first := MishmashAccumulator(Engine(buf, len(buf), 0))
second := MishmashAccumulator(Engine(buf, len(buf), 1))
var combo uint64
combo = uint64(first)<<32 | uint64(second)
fmt.Println(first, second, combo)
}
*/

Loading…
취소
저장