mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 19:58:59 +00:00
xtea: add av_xtea_alloc()
Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
This commit is contained in:
parent
b469832de9
commit
5d8bea3bb2
@ -16,6 +16,7 @@ API changes, most recent first:
|
||||
2015-xx-xx - lavu 54.17.0
|
||||
xxxxxxx - Add av_blowfish_alloc().
|
||||
xxxxxxx - Add av_rc4_alloc().
|
||||
xxxxxxx - Add av_xtea_alloc().
|
||||
|
||||
2015-07-29 - 7e38340 - lavu 54.16.0 - hmac.h
|
||||
Add AV_HMAC_SHA224 and AV_HMAC_SHA256.
|
||||
|
@ -31,8 +31,20 @@
|
||||
#include "avutil.h"
|
||||
#include "common.h"
|
||||
#include "intreadwrite.h"
|
||||
#include "mem.h"
|
||||
#include "xtea.h"
|
||||
|
||||
#if !FF_API_CRYPTO_CONTEXT
|
||||
struct AVXTEA {
|
||||
uint32_t key[16];
|
||||
};
|
||||
#endif
|
||||
|
||||
AVXTEA *av_xtea_alloc(void)
|
||||
{
|
||||
return av_mallocz(sizeof(struct AVXTEA));
|
||||
}
|
||||
|
||||
void av_xtea_init(AVXTEA *ctx, const uint8_t key[16])
|
||||
{
|
||||
int i;
|
||||
|
@ -22,6 +22,7 @@
|
||||
#define AVUTIL_XTEA_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "version.h"
|
||||
|
||||
/**
|
||||
* @file
|
||||
@ -31,9 +32,18 @@
|
||||
* @{
|
||||
*/
|
||||
|
||||
#if FF_API_CRYPTO_CONTEXT
|
||||
typedef struct AVXTEA {
|
||||
uint32_t key[16];
|
||||
} AVXTEA;
|
||||
#else
|
||||
typedef struct AVXTEA AVXTEA;
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Allocate an AVXTEA context.
|
||||
*/
|
||||
AVXTEA *av_xtea_alloc(void);
|
||||
|
||||
/**
|
||||
* Initialize an AVXTEA context.
|
||||
|
Loading…
Reference in New Issue
Block a user