Files
ffmpeg-dev-go/avutil_blowfish.go
2023-10-24 18:22:02 +08:00

88 lines
2.4 KiB
Go

package ffmpeg
/*
#include <libavutil/blowfish.h>
*/
import "C"
import "unsafe"
const (
AV_BF_ROUNDS = C.AV_BF_ROUNDS
)
type AVBlowfish C.struct_AVBlowfish
// Custom: GetP gets `AVBlowfish.p` value.
func (bf *AVBlowfish) GetP() []uint32 {
return unsafe.Slice((*uint32)(&bf.p[0]), AV_BF_ROUNDS+2)
}
// Custom: SetP sets `AVBlowfish.p` value.
func (bf *AVBlowfish) SetP(v []uint32) {
for i := 0; i < FFMIN(len(v), AV_BF_ROUNDS+2); i++ {
bf.p[i] = (C.uint32_t)(v[i])
}
}
// Custom: GetPAddr gets `AVBlowfish.p` address.
func (bf *AVBlowfish) GetPAddr() **uint32 {
return (**uint32)(unsafe.Pointer(&bf.p))
}
// Custom: GetS gets `AVBlowfish.s` value.
func (bf *AVBlowfish) GetS() []uint32 {
return unsafe.Slice((*uint32)(&bf.s[0][0]), 4*256)
}
// Custom: SetS sets `AVBlowfish.s` value.
func (bf *AVBlowfish) SetS(v []uint32) {
for i := 0; i < FFMIN(len(v), 4*256); i++ {
bf.s[i/256][i%256] = (C.uint32_t)(v[i])
}
}
// Custom: GetSAddr gets `AVBlowfish.s` address.
func (bf *AVBlowfish) GetSAddr() **uint32 {
return (**uint32)(unsafe.Pointer(&bf.s))
}
// Custom: GetSIdx gets `AVBlowfish.s` index value.
func (bf *AVBlowfish) GetSIdx(x, y int) uint32 {
return (uint32)(bf.s[x][y])
}
// Custom: SetSIdx sets `AVBlowfish.s` index value.
func (bf *AVBlowfish) SetSIdx(x, y int, v uint32) {
bf.s[x][y] = (C.uint32_t)(v)
}
// Custom: GetSIdxAddr gets `AVBlowfish.s` index address.
func (bf *AVBlowfish) GetSIdxAddr(x, y int) *uint32 {
return (*uint32)(&bf.s[x][y])
}
// AvBlowfishAlloc allocates an AVBlowfish context.
func AvBlowfishAlloc() *AVBlowfish {
return (*AVBlowfish)(C.av_blowfish_alloc())
}
// AvBlowfishInit initializes an AVBlowfish context.
func AvBlowfishInit(ctx *AVBlowfish, key *uint8, keyLen int32) {
C.av_blowfish_init((*C.struct_AVBlowfish)(ctx),
(*C.uint8_t)(key), (C.int)(keyLen))
}
// AvBlowfishCryptEcb encrypts or decrypts a buffer using a previously initialized context.
func AvBlowfishCryptEcb(ctx *AVBlowfish, xl, xr *uint32, decrypt int32) {
C.av_blowfish_crypt_ecb((*C.struct_AVBlowfish)(ctx),
(*C.uint32_t)(xl), (*C.uint32_t)(xr), (C.int)(decrypt))
}
// AvBlowfishCrypt encrypts or decrypts a buffer using a previously initialized context.
func AvBlowfishCrypt(ctx *AVBlowfish, dst, src *uint8,
count int32, iv *uint8, decrypt int32) {
C.av_blowfish_crypt((*C.struct_AVBlowfish)(ctx),
(*C.uint8_t)(dst), (*C.uint8_t)(src),
(C.int)(count), (*C.uint8_t)(iv), (C.int)(decrypt))
}