Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
1fc94724
Commit
1fc94724
authored
9 years ago
by
Martin Storsjö
Browse files
Options
Downloads
Patches
Plain Diff
xtea: Clarify that the current API works in big endian mode
Signed-off-by:
Martin Storsjö
<
martin@martin.st
>
parent
7b2211bf
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libavutil/xtea.h
+4
-2
4 additions, 2 deletions
libavutil/xtea.h
with
4 additions
and
2 deletions
libavutil/xtea.h
+
4
−
2
View file @
1fc94724
...
...
@@ -49,12 +49,14 @@ AVXTEA *av_xtea_alloc(void);
* Initialize an AVXTEA context.
*
* @param ctx an AVXTEA context
* @param key a key of 16 bytes used for encryption/decryption
* @param key a key of 16 bytes used for encryption/decryption,
* interpreted as big endian 32 bit numbers
*/
void
av_xtea_init
(
struct
AVXTEA
*
ctx
,
const
uint8_t
key
[
16
]);
/**
* Encrypt or decrypt a buffer using a previously initialized context.
* Encrypt or decrypt a buffer using a previously initialized context,
* in big endian format.
*
* @param ctx an AVXTEA context
* @param dst destination array, can be equal to src
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment