Marco Colli
                                            Marco Colli
                                        
                                    @alecslupu the Pushpad fork already supports openssl v3 (the ruby gem), but still uses openssl v1.1 (the C library). I also want to add support for OpenSSL v3 (C library)...
I have just released web-push v3.0 which is compatible with both OpenSSL v1.1 and OpenSSL v3 🎉 https://github.com/pushpad/web-push Note: in order to use that gem you need to use `gem...
The fix would be straightforward, we just need to change this line: https://github.com/whitequark/rack-utf8_sanitizer/blob/7dcc1e06786e6b8adfa53a99e407d975b7e39434/lib/rack/utf8_sanitizer.rb#L43 Even the test looks strange (it suggests a replacement, but it actually removes null bytes): https://github.com/whitequark/rack-utf8_sanitizer/blob/7dcc1e06786e6b8adfa53a99e407d975b7e39434/test/test_utf8_sanitizer.rb#L352 If...
Is there any workaround to have maxlength on the input?
I love this theme, but many colors should be fixed in Ruby. For example, hash keys and **symbols** should have a different color from **numbers**, otherwise **it's really hard to...
I asked a similar question a few days ago: https://stackoverflow.com/questions/65647751/building-docker-images-provided-by-untrusted-users-in-a-saas For now the only solution that I have found is to create/destroy a VM for every build... But that is...
Same issue, are there any updates on this?
``` # input: the base64 string of the public key and the base64 string of private key # output: an OpenSSL::PKey::EC with that keys public_key = OpenSSL::PKey::EC::Point.new(group, to_big_num(public_key_base64)) private_key =...
> OpenSSL::PKey::*, Setters for parameters/key components > {RSA,DSA,DH}#set_* and EC#{private_key=,public_key=,group=} > Feature removed without replacement. Keys are now immutable once created - all components must be specified at once. Would...
I just posted a [related question](https://www.reddit.com/r/rails/comments/1clhj4c/changing_the_secret_key_base_will_break_all/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button) on Reddit. It would be useful to have a plan or documentation in case you need to change the secret key.