Giter VIP home page Giter VIP logo

Comments (4)

RimaitosLab avatar RimaitosLab commented on August 27, 2024

Which snippet are you referring to?

from cryptography.

budo76 avatar budo76 commented on August 27, 2024

Which snippet are you referring to?

I tried the snippet in the main README of the "kms" project (2. "use") here:
https://pub.dev/packages/kms
More specifically this was the snippet I used, just to test a signature of a 3-bytes sequence, with Ed22519:

// ...
final kms = flutterKms();
final document = await kms.collection('examples').createKeyPair(
    keyExchangeType: null, // no key exchange.
    signatureType: SignatureType.ed25519,
);
final pk = await document.getPublicKey();
print("Public key: ${pk.bytes}");
// Sign a document
final signature = await document.sign([1,2,3]);

In the call to the sign method I had the error, as I wrote, because in defaultSignatureImplementations (I think it's from the "cryptography" lib) there's a null in the list (don't know why - this is out of my control) and no null-check while using list items with the "singleWhere" statement here:

.singleWhere((c) => c.name == algName);

The desired "ed25519" implementation is the first element of the list, but singleWhere scans all the items in the list (not stopping at first match) so when you access the "name" property of the null item, you have the error. Perhaps just a c?.name would prevent the singleWhere from causing the error but, in my opinion, having a null in the list is still not good.
What do you think? Is there something I'm missing or doing wrong , to prevent the defaultSignatureImplementations from containing a null?

from cryptography.

bkreiser avatar bkreiser commented on August 27, 2024

I have the same issue. Has there been any workaround to this?

from cryptography.

terrier989 avatar terrier989 commented on August 27, 2024

The kms package is deprecated for now.

from cryptography.

Related Issues (20)

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.