GithubHelp home page GithubHelp logo

Comments (2)

randombit avatar randombit commented on July 23, 2024 1

Sorry, I know this is confusing. The cipher API is kind of weirdly designed. I didn't realize our documentation was that non-specific though, thanks for pointing this out.

You should always call finish, either when encrypting or decrypting.

In fact you can get away with never calling process, it exists just for efficiency when dealing with larger messages. It's perfectly fine/correct/easy to just call start with the nonce then immediately finish with a buffer containing the entire message.

For your decryption example, things maybe "work" but probably not quite as you're thinking. What's happening is the Poly1305 authentication tag (final 16 bytes) is being decrypted and emitted as if it was part of the message, and so you're both not checking the tag (which allows arbitrary forgeries) but also ending up with 16 bytes of extra junk at the end. Maybe if you're only looking at the first bytes of the plaintext this was not obvious.

from botan.

TxMat avatar TxMat commented on July 23, 2024

Thanks for clearing things up !

from botan.

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.