Sylvain Bellemare

Results 66 issues of Sylvain Bellemare

The two functions are identical: ```js /** * Base class for fulfillment types. */ class Fulfillment { serializeUri () { return base64url.encode(this.serializeBinary()) } serializeBase64Url () { return base64url.encode(this.serializeBinary()) } ```...

The code for validating a condition is : ```js validate () { // Get info for type ID, throws on error TypeRegistry.findByTypeId(this.getTypeId()) // Bitmask can have at most 32 bits...

Fixes #226

The current code, under `examples/print_cert.rs`, checks whether the subject and issuer are the same with https://github.com/rusticata/x509-parser/blob/b7dcc9397b596cf9fa3df65115c3f405f1748b2a/examples/print-cert.rs#L221 At least, with the self-signed certificates I am trying the example against, the condition...