Brandon Ros
Brandon Ros
I'm a little confused on this as well. I have a handheld device sending the ECU `7E0#0322F12100000000` (which is UDS Read Data By identifier PID 0xF121 from what I can...
> In order to be compatible with 11bits CAN ids and 29bits CAN ids, UDS an ISOTP Network do not use CAN ids (0x7E0, 0x7DF , ..). for address field....
Can you extend this to allow for debugging requests of unknown URL? Example: trying to reverse engineer a site that you know fires off a network request, but you just...
Looks like this isn't possible because you have no support for `RSA PKCS#1`. Is that correct? https://github.com/brianloveswords/node-jwa/blob/master/index.js#L151 seems to be what I'm looking to accomplish.
> Does Node support RSA signing? ``` export const signJwt = (privateKey: Buffer, header: JwtHeader, payload: JwtPayload): string => { const securedInput = `${Buffer.from(JSON.stringify(header)).toString('base64')}.${Buffer.from(JSON.stringify(payload)).toString('base64')}` const signature = crypto.createSign('RSA-SHA256') .update(securedInput) .sign(privateKey)...
Would you be open to consider supporting RSA signing? You already have the sha256 digest component from what I can tell. It looks something like this: `openssl dgst -sha256 -sign...
Closes https://github.com/ronomon/crypto-async/issues/6
@jorangreef this might be slightly offtopic but, does anything in this PR jump out at you as "memory leak worthy"?
@jorangreef Are you able to help get this merged? :)
Would you suggest I open a tracking ticket in https://github.com/imxrt-rs/imxrt-hal for PWM inputs?