It would be nice to be able to introspect on the sizes of RSA keys: ``` pry(main)> key.size NoMethodError: undefined method `size' for #<OpenSSL::PKey::RSA:0x007fa4292cafe0> ``` Here is an ugly way to implement it in pure Ruby using the existing API: ``` ruby Integer(key.to_text[/\((\d+) bit/, 1], 10) ```