2023-10-31 09:16:44 CST W44D2

This commit is contained in:
aggresss
2023-10-31 09:16:44 +08:00
parent f00ecdba54
commit 05345f7cdc
100 changed files with 3340 additions and 3229 deletions

View File

@@ -23,7 +23,7 @@ func AvTwofishInit(d *AVTWOFISH, key *uint8, keyBits int32) int32 {
(*C.uint8_t)(key), (C.int)(keyBits)))
}
// AvTwofishCrypt encrypts or decrypts a buffer using a previously initialized context
// AvTwofishCrypt encrypts or decrypts a buffer using a previously initialized context.
func AvTwofishCrypt(d *AVTWOFISH, dst, src *uint8, count int32, iv *uint8, decrypt int32) {
C.av_twofish_crypt((*C.struct_AVTWOFISH)(d),
(*C.uint8_t)(dst), (*C.uint8_t)(src),