misc/winutils/include/libavutil/blowfish.h
author koda
Wed, 24 Oct 2012 14:55:31 +0100
changeset 7813 7ac83d79b897
permissions -rw-r--r--
support video recording on windows with automation and headers
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7813
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     1
/*
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     2
 * Blowfish algorithm
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     3
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     4
 * This file is part of Libav.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     5
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     6
 * Libav is free software; you can redistribute it and/or
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     7
 * modify it under the terms of the GNU Lesser General Public
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     8
 * License as published by the Free Software Foundation; either
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
     9
 * version 2.1 of the License, or (at your option) any later version.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    10
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    11
 * Libav is distributed in the hope that it will be useful,
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    14
 * Lesser General Public License for more details.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    15
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    16
 * You should have received a copy of the GNU Lesser General Public
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    17
 * License along with Libav; if not, write to the Free Software
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    19
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    20
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    21
#ifndef AVUTIL_BLOWFISH_H
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    22
#define AVUTIL_BLOWFISH_H
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    23
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    24
#include <stdint.h>
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    25
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    26
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    27
 * @defgroup lavu_blowfish Blowfish
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    28
 * @ingroup lavu_crypto
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    29
 * @{
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    30
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    31
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    32
#define AV_BF_ROUNDS 16
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    33
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    34
typedef struct AVBlowfish {
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    35
    uint32_t p[AV_BF_ROUNDS + 2];
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    36
    uint32_t s[4][256];
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    37
} AVBlowfish;
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    38
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    39
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    40
 * Initialize an AVBlowfish context.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    41
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    42
 * @param ctx an AVBlowfish context
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    43
 * @param key a key
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    44
 * @param key_len length of the key
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    45
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    46
void av_blowfish_init(struct AVBlowfish *ctx, const uint8_t *key, int key_len);
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    47
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    48
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    49
 * Encrypt or decrypt a buffer using a previously initialized context.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    50
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    51
 * @param ctx an AVBlowfish context
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    52
 * @param xl left four bytes halves of input to be encrypted
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    53
 * @param xr right four bytes halves of input to be encrypted
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    54
 * @param decrypt 0 for encryption, 1 for decryption
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    55
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    56
void av_blowfish_crypt_ecb(struct AVBlowfish *ctx, uint32_t *xl, uint32_t *xr,
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    57
                           int decrypt);
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    58
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    59
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    60
 * Encrypt or decrypt a buffer using a previously initialized context.
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    61
 *
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    62
 * @param ctx an AVBlowfish context
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    63
 * @param dst destination array, can be equal to src
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    64
 * @param src source array, can be equal to dst
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    65
 * @param count number of 8 byte blocks
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    66
 * @param iv initialization vector for CBC mode, if NULL ECB will be used
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    67
 * @param decrypt 0 for encryption, 1 for decryption
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    68
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    69
void av_blowfish_crypt(struct AVBlowfish *ctx, uint8_t *dst, const uint8_t *src,
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    70
                       int count, uint8_t *iv, int decrypt);
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    71
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    72
/**
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    73
 * @}
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    74
 */
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    75
7ac83d79b897 support video recording on windows with automation and headers
koda
parents:
diff changeset
    76
#endif /* AVUTIL_BLOWFISH_H */