25 int main(
int argc,
char** argv)
28 static const uint8_t Key[3][16] = {
29 {0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45, 0x67, 0x89, 0x34, 0x56, 0x78, 0x9a},
30 {0x01, 0x23, 0x45, 0x67, 0x12, 0x34, 0x56, 0x78, 0x23, 0x45},
31 {0x01, 0x23, 0x45, 0x67, 0x12}
33 static const uint8_t rpt[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xab, 0xcd, 0xef};
34 static const uint8_t rct[3][8] = {
35 {0x23, 0x8b, 0x4f, 0xe5, 0x84, 0x7e, 0x44, 0xb2},
36 {0xeb, 0x6a, 0x71, 0x1a, 0x2c, 0x02, 0x27, 0x1b},
37 {0x7a, 0xc8, 0x16, 0xd1, 0x6e, 0x9b, 0x30, 0x2e}
39 static const uint8_t rct2[2][16] = {
40 {0xee, 0xa9, 0xd0, 0xa2, 0x49, 0xfd, 0x3b, 0xa6, 0xb3, 0x43, 0x6f, 0xb8, 0x9d, 0x6d, 0xca, 0x92},
41 {0xb2, 0xc9, 0x5e, 0xb0, 0x0c, 0x31, 0xad, 0x71, 0x80, 0xac, 0x05, 0xb8, 0xe8, 0x3d, 0x69, 0x6e}
43 static const uint8_t iv[8] = {0xee, 0xa9, 0xd0, 0xa2, 0x49, 0xfd, 0x3b, 0xa6};
46 static const int key_bits[3] = {128, 80, 40};
52 for (j = 0; j < 3; j++){
56 for (i = 0;i < 8; i++){
57 if (rct[j][i] != temp[i]){
64 for (i =0; i < 8; i++) {
65 if (rpt[i] != temp[i]) {
71 memcpy(rpt2[0], Key[0], 16);
72 memcpy(rpt2[1], Key[0], 16);
73 for (i = 0; i < 1000000; i++){
79 for (j = 0; j < 2; j++) {
80 for (i = 0; i < 16; i++) {
81 if (rct2[j][i] != rpt2[j][i]) {
87 for (j = 0; j < 3; j++) {
94 for (i = 0; i < 16; i++) {
95 if (rct2[0][i] != rpt2[0][i]) {
void av_cast5_crypt(AVCAST5 *cs, uint8_t *dst, const uint8_t *src, int count, int decrypt)
Encrypt or decrypt a buffer using a previously initialized context, ECB mode only.
Public header for libavutil CAST5 algorithm.
av_cold int av_cast5_init(AVCAST5 *cs, const uint8_t *key, int key_bits)
Initialize an AVCAST5 context.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
void av_cast5_crypt2(AVCAST5 *cs, uint8_t *dst, const uint8_t *src, int count, uint8_t *iv, int decrypt)
Encrypt or decrypt a buffer using a previously initialized context.
struct AVCAST5 * av_cast5_alloc(void)
Allocate an AVCAST5 context To free the struct: av_free(ptr)
int main(int argc, char **argv)