Giter Site home page Giter Site logo

Comments (4)

manueldavid123 avatar manueldavid123 commented on June 12, 2024

After an intense search in other projects, I have found the solution to my problem.

When a file is uploaded to a private room, the content of that file is encrypted. Once downloaded, it is necessary to decrypt it using external libraries.

Here I show an example code to decrypt files from Matrix:

    @match_event(File)
    async def file_skill(self, event):
        try:
            data_in_bytes = await event.get_file_bytes()
            content = event.raw_event['content']

            if ('file' in content):
                # The file is encoded
                file_data = event.raw_event['content']['file']
                
                data_in_bytes = crypto.attachments.decrypt_attachment(
                                        data_in_bytes,
                                        file_data["key"]["k"],
                                        file_data["hashes"]["sha256"],
                                        file_data["iv"],
                                    )
            	

            return data_in_bytes.decode('utf-8')
        except BaseException as e:
        	logging.error(e)

        return None

In my opinion, this information should be added to the connectors documentation.

If anyone has any comments, fell free to post it. Otherwise, this issue can be closed.

from opsdroid.

Cadair avatar Cadair commented on June 12, 2024

Thanks for figuring this one out and providing the code to decrypt the attachment. We should definitely add this to the connector so it's transparent to the skills.

from opsdroid.

u7498708 avatar u7498708 commented on June 12, 2024

Hi there, was wondering if this has been done and if not if I could be assigned to it? I am a first time contributor so I might ask a few questions about it if I get stuck. Thanks and looking forward to hearing back!

from opsdroid.

u7498708 avatar u7498708 commented on June 12, 2024

@Cadair just in case I needed to mention you :)

from opsdroid.

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.