• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

aescts-1.0.1/H29-Sep-2017-

.gitignoreH A D16-Sep-2020275

LICENSEH A D16-Sep-202011.1 KiB

README.mdH A D16-Sep-2020626

aescts.goH A D16-Sep-20206.1 KiB

README.md

1# AES CBC Ciphertext Stealing
2[![GoDoc](https://godoc.org/gopkg.in/jcmturner/aescts.v1?status.svg)](https://godoc.org/gopkg.in/jcmturner/aescts.v1) [![Go Report Card](https://goreportcard.com/badge/gopkg.in/jcmturner/aescts.v1)](https://goreportcard.com/report/gopkg.in/jcmturner/aescts.v1)
3
4Encrypt and decrypt data using AES CBC Ciphertext stealing mode.
5
6Reference: https://en.wikipedia.org/wiki/Ciphertext_stealing#CBC_ciphertext_stealing
7
8To get the package, execute:
9```
10go get gopkg.in/jcmturner/aescts.v1
11```
12To import this package, add the following line to your code:
13```go
14import "gopkg.in/jcmturner/aescts.v1"
15
16```