Code Monkey home page Code Monkey logo

blake2b's People

Contributors

hnord-vdx avatar riclava avatar sushantchandla avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

blake2b's Issues

Flutter Web Wrong Output

While running the functions

  • hash
    -hashHexString2HexString
    In flutter web the output is wrong. It is different than the output on android or iOS.

I want to use Blake2b's second constructor.

  • Currently Blake2b can only call one constructor.

  • But I want to call the second constructor.

  • That's why I want it to be a named constructor.

  • I also want to be able to accept null as a parameter.

  • Specifically, modify it as follows.

=Before===============
  blake2b(final Uint8List key, final int digestSize, final Uint8List salt, final Uint8List personalization) {
=After================
  Blake2b.blake2b(final Uint8List? key, final int digestSize, final Uint8List? salt, final Uint8List? personalization) {
======================

The test code is shown following.

    String preSalt = .....
    int digestSize = 16;
    Uint8List bPreSalt = Uint8List.fromList(preSalt.codeUnits);
    Uint8List salt = Uint8List(digestSize);
    final Blake2b blake2b = Blake2b.blake2b(null, digestSize, null, null);
    blake2b.update(bPreSalt, 0, bPreSalt.length);
    blake2b.digest(salt, 0);

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.