Martyn P
Martyn P
I have had a play and can modify data with something along the lines of: ```rust pub struct HMACHash { sha256_hasher: Sha256, buffer: Option, output: Option, } impl HMACHash {...
> Is there a way to allow the data transform to access the owning Request object? After a lot of digging, I am thinking this functionality might actually be impractical...
> > > Is there a way to allow the data transform to access the owning Request object? > > > > > > After a lot of digging, I...
Had a bit more of a play, looks to be working well: https://gist.github.com/martynp/a9e48d33562130ddd65d86df1183f6c1 The reason I was looking at buffering the complete stream was to implement request compression processing: ```rust...
Verifying certificates looks like it will be difficult. We can assume that the pair are good when the pair is first loaded, but after that there is a potential for...
> I tested on Chrome, even if I reload the page the certificate doesn't change and I can't open it. Same thing happens to me, I even used notify-rs to...
> My suggestion is either we go with a different Acceptor, or we change the add another configuration in which Rocket which would restart the server and then do the...
> > I tested on Chrome, even if I reload the page the certificate doesn't change and I can't open it. Same thing happens to me, I even used notify-rs...
@SergioBenitez Is there still a need for adding tls tests in /core/lib/tests? (I see there are some tests in the ./examples/tls project