GithubHelp home page GithubHelp logo

xxhashsharp's People

Contributors

eallegretta avatar kexplo avatar noricube avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

xxhashsharp's Issues

XXHash.XXH32 decode

Hello,

Is possible to obtain my original string i need to obtain several hased strings, somebody??

Bug in CalculateHash

There's a bug in this function:

public static uint CalculateHash(byte[] buf, int index = 0, int len = -1, uint seed = 0)

It should be (as per Digest):

var memsize = index + len;

while (index <= memsize - 4) {
    h32 += BitConverter.ToUInt32(buf, index)*PRIME32_3;
    h32 = RotateLeft(h32, 17)*PRIME32_4;
    index += 4;
}

while (index < memsize) {
    h32 += buf[index]*PRIME32_5;
    h32 = RotateLeft(h32, 11)*PRIME32_1;
    index++;
}

The current code does:

while (index < len)

Which means that code block will only execute when the index is less than "len" (e.g. index: 0, len: 4), but not when the index is bigger than the length being checked (e.g. index: 16, len: 4).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.