Registry / crypto / secure-io-sio-go

secure-io-sio-go

JSON →
library0.3.1gogounverified

Package sio implements a provable secure authenticated encryption scheme for continuous byte streams.

go get github.com/secure-io/sio-go
INSTALL
IMPORT
SIG · SECURE-IO-SIO-GO
S
secure-io-sio-go
cryptogov0.3.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

sio
github.com/secure-io/sio-go

Encrypts a byte stream using authenticated encryption.

package main import ( "bytes" "fmt" "github.com/secure-io/sio-go" ) func main() { data := []byte("Hello, World!") key := make([]byte, 32) var encrypted bytes.Buffer w, _ := sio.EncryptWriter(&encrypted, sio.Config{Key: key}) w.Write(data) w.Close() fmt.Println("Encrypted:", encrypted.Bytes()) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.3.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
13 hits · last 30 days
node
12
Amazon
1
Resources
secure-io-sio-go — go get secure-io-sio-go · libregistry