This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

point_conversion_form=

        # OpenSSL::PKey::EC::Group.point_conversion_form=

(from ruby core)
### Implementation from Group
---
    group.point_conversion_form = form

---

Sets the form how EC::Point data is encoded as ASN.1 as defined in
X9.62.

*format* can be one of these:

`:compressed`
:   Encoded as z||x, where z is an octet indicating which solution of
    the equation y is. z will be 0x02 or 0x03.
`:uncompressed`
:   Encoded as z||x||y, where z is an octet 0x04.
`:hybrid`
:   Encodes as z||x||y, where z is an octet indicating which solution of
    the equation y is. z will be 0x06 or 0x07.


See the OpenSSL documentation for EC_GROUP_set_point_conversion_form()



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.