Jon Staples

Results 7 comments of Jon Staples

@acegilz I recently implemented a generic multi-provider 2fa workflow with this gem. I was actually searching issues to determine of an OTP addition would be valuable here. I would be...

I'm just going to comment here and provide general applause and encouragement. There are developers with m1s that want all the benefits of docker and sorbet together that are counting...

@boldfield I have a need to pick up this particular issue and update s3-encryption to handle streaming data. In evaluating solutions for this I've also come across the s3-encryption-client but...

From what I read `boto3.s3.client.put_object` does not support streams and so is not appropriate for my particular usecase where the size of my encrypted data may be arbitrarily large. I...

So it turns out I was mistaken. `put_object` appears to support streaming natively. See https://github.com/boto/boto3/issues/426 I can also confirm that if I retrieve the encrypted key data using boto3, the...

For my purposes I have to have a CLI so I can use shell piping and redirects to move data between s3 and back in a restfully encrypted state. I...

So ultimately I've come around on the CLI thing. I've created my own built on top of s3-encryption that handles encrypting filestreams. There are some issues with the encryption client...