Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expose mechanisms in the high-level API #126

Merged
merged 3 commits into from
Aug 16, 2018

Commits on Mar 1, 2018

  1. OIDs: Copy constructor take ownership

    When constructing via a the cpy parameter, cpy
    would maintain ownership; if cpy._free_on_dealloc
    was set to true, the new object could have memory
    freed while still maintaining a reference to it.
    This fixes the issue by having the new object take
    ownership. To perform a memory copy, use the elements
    argument to the constructor.
    
    Signed-off-by: Alexander Scheel <ascheel@redhat.com>
    cipherboy committed Mar 1, 2018
    Configuration menu
    Copy the full SHA
    c09e94c View commit details
    Browse the repository at this point in the history
  2. OIDs: Add dotted_form properties

    This introduces a new property, dotted_form, for querying
    the dotted form of the OID.
    
    Signed-off-by: Alexander Scheel <ascheel@redhat.com>
    cipherboy committed Mar 1, 2018
    Configuration menu
    Copy the full SHA
    e0b8084 View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2018

  1. Expose mechanisms in the high-level API

    This creates a new class, Mechanism, for inquiring
    information about a mechanism. This includes support
    for RFCs 5587 and 5801. As Mechanism derives from OID,
    it is compatible with all places that accept a mech
    by OID.
    
    Signed-off-by: Alexander Scheel <ascheel@redhat.com>
    Signed-off-by: Alexander Scheel <alexander.m.scheel@gmail.com>
    cipherboy committed Mar 5, 2018
    Configuration menu
    Copy the full SHA
    535e67a View commit details
    Browse the repository at this point in the history