rozbb / StrobeGo

Readable Implementation of Strobe in Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StrobeGo

GoDoc

This repository contains an implementation of the Strobe protocol framework. See this blogpost for an explanation of what is the framework.

The implementation of Strobe has not been thoroughly tested. Do not use this in production.

The Strobe implementation is heavily based on golang.org/x/crypto/sha3, which is why some of the files have been copied in the /strobe directory. You do not need to have Go's SHA-3 package to make it work.

Install

To use it, first get Go's experimental sha3's implementation:

go get github.com/mimoo/StrobeGo/strobe

Usage

See godoc for thorough documentation. Here is an example usage:

package main

import (
	"encoding/hex"
	"fmt"

	"github.com/mimoo/StrobeGo/strobe"
)

func main() {
	s := strobe.InitStrobe("myHash", 128) // 128-bit security
	message := []byte("hello, how are you good sir?")
	s.AD(false, message) // meta=false
	fmt.Println(hex.EncodeToString(s.PRF(16))) // output length = 16
}

Roadmap

  • Implement test vectors of SHAKE
  • Generate proper test vectors and test them with the reference implementation in python of Strobe

About

Readable Implementation of Strobe in Go

License:Apache License 2.0


Languages

Language:Go 71.0%Language:Assembly 29.0%