Weizheng Xu
Weizheng Xu
Yes, usePureJavaScript indicates a pure ES6 environment, which lack of `window` or `self` variables, and also not NodeJS runtime context. It's exactly my production environment, it's `wechat miniapp` runtime context.
This workaround is from this function `_detectSubtleMsCrypto`: https://github.com/digitalbazaar/forge/blob/master/lib/rsa.js#L1815 And, maybe the detection for undefined variables, should be kept this way? `typeof self === 'undefined'` I worried that change type of...
rsa_pss_saltlen:len For pss mode only this option specifies the salt length. Two special values are supported: -1 sets the salt length to the digest length. When signing -2 sets the...
@agentzh Thx for the fast reply. I've tried drizzle with HTTP/2 but failed, and here's the error log: 2016/04/10 02:23:11 [alert] 5834#0: *436835 epoll_ctl(1, 43) failed (17: File exists), client:...
> > I'm kind of expecting some protocol discussions to happen after 3.0 stabilises. > > Agree. But one forecast: the GM/T 0024 is very ambiguous to implement, we really...
Here's new library: hyper-h2 for only protocol layer. https://github.com/python-hyper/hyper-h2
I think HTTP/2 is more meaningful with connection reuse & stream multiplexing, especially with lots of API query in same origin. And I've wrote a client, requires h2==2.1.0 & tornado...