- package mishmash
-
- var PrimeSet = [256]uint32{
- 3238836313, 3360886099, 3993634273, 4064669561, 4208856901, 4049234129, 2251082663, 2536872017,
- 3172087459, 4219386191, 3254853737, 2374917353, 3448754471, 3118274443, 3572204863, 3686337631,
- 2961431969, 3025133497, 2856326813, 4277854241, 2469276751, 3175023217, 4065345943, 2191667573,
- 3716607571, 3186473551, 2993231543, 2854210481, 3661300009, 4160057677, 3393580357, 2401731751,
- 3089619301, 3049406923, 2689305253, 2226455687, 2384594237, 2321314543, 3358155473, 2769745513,
- 4064412181, 3546679369, 2971824769, 3312622147, 3878690237, 4226789561, 3945135893, 2667481697,
- 3886727213, 2447929819, 2905769257, 2655507487, 2151468307, 2774610127, 3117477541, 2619506011,
- 2224830217, 4005223571, 2817826603, 4024485649, 2357623691, 3380603881, 3799676627, 3174723401,
- 2925703279, 3692030071, 3928564727, 3822903739, 2520472573, 2345602981, 2318506963, 2933432651,
- 2964809711, 3441413681, 3537168083, 3213751901, 3785291413, 3874794739, 2703288127, 4139044993,
- 2757352427, 3533741287, 2767266521, 3616593653, 4121176723, 2759804627, 2613878749, 3621322741,
- 3365797381, 3780923077, 4090912909, 2400326909, 3222524423, 2824243943, 2496802109, 2268391639,
- 3124087573, 3716479807, 3131673143, 2598657163, 3239086001, 3049736639, 2288116447, 3310352849,
- 3095504927, 3299510729, 4177820137, 3414229717, 3243438811, 3532678967, 3232117841, 3951863177,
- 2555079403, 3921722923, 2767778263, 3642539597, 2259834439, 3378013361, 3318867061, 2219022677,
- 4283411207, 3528301687, 2626036943, 2258523251, 3833937103, 3639081947, 4029829451, 2360238479,
- 2184594703, 4187931989, 2562197887, 3622455827, 3374449921, 3194095649, 4048368617, 2355855647,
- 4187863969, 3671153483, 2548899877, 3752659289, 3019207333, 3000748913, 2969725901, 2288226749,
- 3941344529, 2160836201, 2557613741, 2747755807, 2813873353, 2437638083, 2278088377, 2925209927,
- 4245758497, 3470038853, 2625083243, 2293827821, 3819793067, 3887526641, 3810382399, 4129510223,
- 3184769573, 3942422921, 3000411851, 2267160979, 3295636387, 3962735783, 2857209623, 2388617971,
- 3691266013, 2683345051, 3245511107, 3349852217, 2544095017, 3631826647, 4105881239, 2762987873,
- 2666463031, 2946438881, 3113899517, 2223454549, 2568559537, 3101729287, 2555320727, 3030152533,
- 2979132743, 4253672737, 2870043779, 2843306603, 3926687683, 4185601351, 3731200831, 3722500409,
- 4115072947, 2615487569, 2389531631, 3868949611, 2337008593, 2515079899, 2521605199, 3168567119,
- 3580694591, 3845527589, 3722753051, 2668632049, 3667111729, 3874685057, 3226838213, 2720181421,
- 2612026369, 2694744433, 4155238081, 3521473309, 3862885931, 3115061903, 4166213797, 3520042793,
- 3944208013, 4078403383, 2285388311, 3719800027, 4016404867, 3390427661, 3338388139, 2660266009,
- 3032933947, 4200211513, 3155686909, 3019786009, 4125535433, 3244923947, 2398660417, 2758948859,
- 2944556507, 3818410403, 2247818519, 2586876613, 3420280733, 4236637451, 2724168703, 3321056041,
- 2625015193, 2795623993, 3911522341, 3507684083, 3553065317, 3987511039, 2786582429, 2534596151,
- }
-
- func selectPrime(n uint64) uint64 {
- return uint64(PrimeSet[n&0xff])
- }
-
- func Engine(buffer string, length int, accumulator uint64) uint64 {
- for i := 0; i < length; i++ {
- b := uint64(buffer[i])
- var accumulator1 uint64 = selectPrime(accumulator) + b
- var accumulator2 uint64 = ^accumulator * selectPrime(b)
- var accumulator3 = accumulator >> (32 + ((b & 0x1F) ^ (b >> 5)))
- accumulator = accumulator1 + accumulator2 + accumulator3
- }
- return accumulator
- }
-
- func Mishmash(buffer string, nums ...uint64) uint32 {
- // nums is a seed/accumulator
- var accumulator uint64
- if 0 == len(nums) {
- // seeding with 0 by default - could be changed
- accumulator = Engine(buffer, len(buffer), 0)
- } else {
- accumulator = Engine(buffer, len(buffer), nums[0])
- }
- return uint32(accumulator & 0x00000000ffffffff)
- }
-
- // example below shows calling Mishmash on "hello world"
- // and then collecting the hash. Given
- // a collision we simply call Mishmash again, giving it
- // the first hash as a seed this time and get a second hash.
- /*
- func main() {
- buf := []byte("Hello world")
- // grab the accumulator if necessary
- accum := Engine(buf, len(buf), 0)
- // grab the hash - decode accumulator into hash
- hash := MishmashAccumulator(accum)
- fmt.Printf("%08x\n", hash)
- // now get second hash - seed with accumulator
- secondHash := Mishmash(buf, accum)
- fmt.Printf("%08x\n", secondHash)
- // you can also get a simple hash
- simpleMishmash := Mishmash(buf)
- fmt.Printf("%08x\n", simpleMishmash)
- }
- */
- // example below used to validate output against C++ mishmash
- /*
- func main() {
- buf := "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)
- }
- */
|