Ryan Hurst
Ryan Hurst
Works in Safari without code modification as we use it in several projects, ill have @microshine take a look when he gets online.
Boris, I am not too familiar with cordova/phonegap but I understand you end up with JS also using this should work. Ryan
If you added them to https://github.com/PeculiarVentures/webcrypto-liner then the changes to js-jose would be small and architecturally consistent to js-Jose. Additionally this would not increase the size of js-jose for those...
Yes, we already added secp256k1 even though not part of webcrypto specs, as a result changes to js-Jose to support this alg here would be minimal. In my opinion an...
Yes, they have not been added to webcrypto-liner. IMHO it would not be good to add crypto directly to js-jose or to add a new crypto interface to js-jose as...
IE 11 does not support WebCrypto. see https://github.com/PeculiarVentures/webcrypto-liner
I think I agree with the conclusion, the problem is that this will be a breaking change (as has been pointed out above). I am not sure how large of...
You will need a atob polyfill
js-jose it implements the [jose standard](https://datatracker.ietf.org/group/jose/documents/). For crypto it uses [WebCrypto](https://github.com/diafygi/webcrypto-examples). You shouldn’t if at all possible use JavaScript implemented crypto and instead use WebCrypto and libraries based on it.
That is correct. WebCrypto has no mechanism to do this. Though we have added additional algorithms and added extra features to-date we have not (intentionally) not followed the WebCrypto. We...