| Package | Description | 
|---|---|
| org.bytedeco.ffmpeg.global | 
| Modifier and Type | Method and Description | 
|---|---|
| static AVHMAC | avutil. av_hmac_alloc(int type)Allocate an AVHMAC context. | 
| Modifier and Type | Method and Description | 
|---|---|
| static int | avutil. av_hmac_calc(AVHMAC ctx,
            byte[] data,
            int len,
            byte[] key,
            int keylen,
            byte[] out,
            int outlen) | 
| static int | avutil. av_hmac_calc(AVHMAC ctx,
            ByteBuffer data,
            int len,
            ByteBuffer key,
            int keylen,
            ByteBuffer out,
            int outlen) | 
| static int | avutil. av_hmac_calc(AVHMAC ctx,
            BytePointer data,
            int len,
            BytePointer key,
            int keylen,
            BytePointer out,
            int outlen)Hash an array of data with a key. | 
| static int | avutil. av_hmac_final(AVHMAC ctx,
             byte[] out,
             int outlen) | 
| static int | avutil. av_hmac_final(AVHMAC ctx,
             ByteBuffer out,
             int outlen) | 
| static int | avutil. av_hmac_final(AVHMAC ctx,
             BytePointer out,
             int outlen)Finish hashing and output the HMAC digest. | 
| static void | avutil. av_hmac_free(AVHMAC ctx)Free an AVHMAC context. | 
| static void | avutil. av_hmac_init(AVHMAC ctx,
            byte[] key,
            int keylen) | 
| static void | avutil. av_hmac_init(AVHMAC ctx,
            ByteBuffer key,
            int keylen) | 
| static void | avutil. av_hmac_init(AVHMAC ctx,
            BytePointer key,
            int keylen)Initialize an AVHMAC context with an authentication key. | 
| static void | avutil. av_hmac_update(AVHMAC ctx,
              byte[] data,
              int len) | 
| static void | avutil. av_hmac_update(AVHMAC ctx,
              ByteBuffer data,
              int len) | 
| static void | avutil. av_hmac_update(AVHMAC ctx,
              BytePointer data,
              int len)Hash data with the HMAC. | 
Copyright © 2025. All rights reserved.