EnigmaBridge / certbot-external-auth

Certbot external DNS, HTTP, TLSSNI domain validation plugin with JSON output and scriptable hooks, with Dehydrated compatibility
Other
109 stars 15 forks source link

acme.jose replaced with josepy (library change upstream) #9

Closed Torxed closed 6 years ago

Torxed commented 6 years ago

https://github.com/EnigmaBridge/certbot-external-auth/blob/master/certbot_external_auth/plugin.py#L33

from acme.jose import b64

needs to be replaced with

from josepy import b64

And the library to install is this one:

Because they're annoying bastards that change even their libraries mid way without any real notification. But hey, I'm just a developer.. What do I know.

(I'll submit a pull request if I got the time this week)

ph4r05 commented 6 years ago

Thanks!