Https-everywhere: pem-jwk and dependency on nodejs can be replaced with a short python script

Created on 3 Oct 2018  路  2Comments  路  Source: EFForg/https-everywhere

Type: other

... and a python package not in Debian.

After pip install pyjwkest (possibly in a virtual environment), the following script can replace the need for npm/nodejs in this section on making an update channel

#!/usr/bin/env python3
from jwkest.jwk import RSAKey
print(RSAKey().load('/dev/stdin'))

I realize this is essentially replacing a dependency with a different dependency.

wontfix

Most helpful comment

I'm not sure what the current view on this is but it would go against #9993.

All 2 comments

I'm not sure what the current view on this is but it would go against #9993.

We are currently rewriting everything in Node.

Was this page helpful?
0 / 5 - 0 ratings