Coder Social home page Coder Social logo

Comments (7)

criztovyl avatar criztovyl commented on May 22, 2024

Looks nice 👍

from firefox_decrypt.

unode avatar unode commented on May 22, 2024

Hi @ser2-creator thanks for the code.
Indeed the implementation is crude. Mostly on 'sorta works' basis. The weird cast was a shrug fix for a segfault (as you noticed).
Your code is much nicer so I'll look into merging this soon.

from firefox_decrypt.

unode avatar unode commented on May 22, 2024

Any name I could credit you under?

from firefox_decrypt.

 avatar commented on May 22, 2024

I prefer not to be credited :) Just use it.

from firefox_decrypt.

unode avatar unode commented on May 22, 2024

Also an option :)

from firefox_decrypt.

 avatar commented on May 22, 2024

For the error messages, I use the following

self._makefu(ct.c_int, "PORT_GetError")
self._makefu(ct.c_char_p, "PR_ErrorToName", ct.c_int)
self._makefu(ct.c_char_p, "PR_ErrorToString", ct.c_int, ct.c_uint32)

and

try:
	code = self._PORT_GetError()
	name = self._PR_ErrorToName(code)
	name = "NULL" if name is None else name.decode("ascii")
	text = self._PR_ErrorToString(code, 0) # 0 is the default language
	text = text.decode("utf8")
except Exception: # I guess only UnicodeDecodeError could occur
	name = "?"
	text = "error getting error message"

I am out...

from firefox_decrypt.

unode avatar unode commented on May 22, 2024

Merged, thanks again.

from firefox_decrypt.

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.