Skip to content

This Golang package simplifies even further the usage of NaCl crypto primitives

License

Notifications You must be signed in to change notification settings

pilinux/cryptoengine

 
 

Repository files navigation

cryptoengine

This simplifies even further the usage of the NaCl crypto primitives, by taking care of the nonce part. It uses a KDF, specifically HKDF to compute the nonces.

Current Status

Build Linter CodeQL Go Report Card Go Reference

Big Picture

The encryption and decryption phases are the following:

Message -> Encrypt -> EncryptedMessage -> ToBytes() -> < = NETWORK = >  <- FromBytes() -> EncryptedMessage -> Decrypt -> Message

Usage

    1. Import the library
    import github.com/pilinux/cryptoengine
    1. Instantiate the CryptoEngine object via:
    engine, err := cryptoengine.InitCryptoEngine("Sec51")
    if err != nil {
      return err
    }

See the go doc for more info about the InitCryptoEngine parameter

    1. Encrypt a message using symmetric encryption
    message := "the quick brown fox jumps over the lazy dog"
    engine.NewMessage(message)
    if err != nil {
      return err
    }
    1. Serialize the message to a byte slice, so that it can be safely sent to the network
    messageBytes, err := tcp.ToBytes()
    if err != nil {
      t.Fatal(err)
    }
    1. Parse the byte slice back to a message
  message, err := MessageFromBytes(messageBytes)
  if err != nil {
    t.Fatal(err)
  }

License

Copyright (c) 2015 Sec51.com info@sec51.com

Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

About

This Golang package simplifies even further the usage of NaCl crypto primitives

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Go 100.0%