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

first pass at simple encryption #17

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Commits on Dec 12, 2014

  1. first pass at simple encryption

    This isn't intended to be a complete solution yet, but I wanted to give
    you a proof of concept I banged out. The encryption is completely
    transparent to the end user. To use it, simply pass the parameter of
    `encrypted => true` and it's encrypted & decrypted for you.
    
    Example usage:
    
    ``` Puppet
    datacat_fragment { 'encryption test':
      target => $target,
      data   => {
        name => 'fred',
      },
      encrypted => true,
    }
    ```
    binford2k committed Dec 12, 2014
    Configuration menu
    Copy the full SHA
    5ef200f View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2015

  1. Port encryption to use binford2k/node_encrypt

    This conditionally loads my node_encrypt library, and then allows
    users to transparently node_encrypt() any data items.
    binford2k committed Dec 14, 2015
    Configuration menu
    Copy the full SHA
    a9c074a View commit details
    Browse the repository at this point in the history
  2. document node_encrypt

    binford2k committed Dec 14, 2015
    Configuration menu
    Copy the full SHA
    398254b View commit details
    Browse the repository at this point in the history