Chris Marisic

Results 14 issues of Chris Marisic

Inside `private static byte[] DecodeBytes(string token, object key = null, JwsAlgorithm? jwsAlg = null, JweAlgorithm? jweAlg = null, JweEncryption? jweEnc = null)` There's the line: `string algorithm = (string) JWT.jsMapper.Parse(Encoding.UTF8.GetString(bytes1))["alg"];`...

I would like to remove the alg and typ headers since they [expose internal security details](https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/) unnecessarily. Either the messages match my configured algorithm or they don't. This also has...

I wanted to use Scrutor to register all of my https://github.com/reactiveui/refit interfaces to `RestService.For` however there doesn't seem to be any obvious ways to do this since I don't have...

Feature Request

Failing test attached ``` c# public class ObjectAccessorPrivateAccessTest { [Test] public void Fails_when_accessing_private_field() { var token = new Wrapper(new Bar {Title = "#1 Title", Url = "#1 Url"}); var @public...

If you have a malformed AttributeRouting Route you get a very ungraceful error. Suppose i have the route: ``` [GET("contents/{page-slug}/{blog-title")] ``` Note the lack of a closing } on blog-title....

I don't know how readily reproduciable this is, but on our server that we recently upgraded to .NET 4.5.1 alot of applications broke. The crux of it seems to be...

Update artifact links to target koenpunt instead of harvesthq. (I got lost back in harvesthq trying to download this project)

The documentation for Unresolved services / RegisterFallback is very unclear in how to activate services that are not registered but that can be solved by the container. The simplest scenario...

If I attempt to hyper link images I will get nothing in orbit. I started using orbit after seeing it used on this theme: http://xhtml.webtemplatemasters.com/projects/xhtml/paradise/index-7.html Their orbit declaration is similar...

The built in JSON serializers return JSON dates in a nonstandard format which results in invalid JSON that cannot be used with jquery (at the minimum). Please see my comments...