Skip to content

ACS is a simple Golang library that provides AES-CBC Writer and Reader

License

Notifications You must be signed in to change notification settings

mdouchement/acs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ACS - AES CBC Streamer

CircleCI GoDoc Go Report Card License

ACS is a simple Golang library that provides AES-CBC Writer and Reader.

key := []byte("f>Gp@U-y4;$8`C@QP#^s]]ptuN='mD7,")

w, err := acs.NewWriter(anIoWriter, key)
if err != nil {
  // Something
}
io.Copy(w, anIoReader)



r, err := acs.NewReader(anIoReader, key)
if err != nil {
  // Something
}
io.Copy(anIoWriter, r)

License

MIT

Contributing

All PRs are welcome.

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

About

ACS is a simple Golang library that provides AES-CBC Writer and Reader

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages