GithubHelp home page GithubHelp logo

Comments (5)

keninqiu avatar keninqiu commented on June 27, 2024 1

When do
Uint8List dt = toBuffer((dd + tt) % n);
It will happened the length of dt is smaller than 32.
We have to make sure the length is always 32.

I added
if(dt.length < 32) {
Uint8List newDt = new Uint8List(32);
for(var i = 0; i < 32 - dt.length; i++) {
newDt[i] = 0x00;
}
for(var i = 0; i < dt.length; i++) {
newDt[32-dt.length + i] = dt[i];
}
dt = newDt;
}
to ecurve.dart
It will fix this issue.
I already made a pull request.

from bip32-dart.

asssaf avatar asssaf commented on June 27, 2024

both libraries agree on the result of m/1'/199007533'/627785449'/1521366139'/2' so it looks like the difference is that this library skips the 1' index and the others don't.

from bip32-dart.

rafa-js avatar rafa-js commented on June 27, 2024

Can you see if m/1'/199007533'/627785449'/1521366139' matches with m/1'/199007533'/627785449'/1521366140'?

It's what happen to me. So I guess the issue has something to do with this line: https://github.com/anicdh/bip32-dart/blob/master/lib/src/bip32_base.dart#L103

Looking deeper.

from bip32-dart.

asssaf avatar asssaf commented on June 27, 2024

Can you see if m/1'/199007533'/627785449'/1521366139' matches with m/1'/199007533'/627785449'/1521366140'?

That pair yields different results for me

from bip32-dart.

longhoangwkm avatar longhoangwkm commented on June 27, 2024

Thanks everyone for report and helping

from bip32-dart.

Related Issues (9)

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.