mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 12:02:42 +01:00
518787c299
This avoids using fulltext keys for table scanning. This also reverts Sinisa's original fix for this problem. Docs/manual.texi: Update of SQL_JOIN_MAX_SIZE information3602 client/mysqldump.c: comment cleanup include/my_aes.h: General cleanup for new file include/rijndael.h: General cleanup for new file include/sha1.h: General cleanup for new file mysys/my_aes.c: General cleanup for new file mysys/rijndael.c: General cleanup for new file mysys/sha1.c: General cleanup for new file sql/ha_berkeley.h: Made keyread (key scanning) a key specific attribute. sql/ha_innodb.cc: Merge with 3.23.x sql/ha_innodb.h: Made keyread (key scanning) a key specific attribute. sql/ha_isam.cc: Moved things to table_flags() sql/ha_isam.h: Made keyread (key scanning) a key specific attribute. sql/ha_myisam.cc: Made keyread (key scanning) a key specific attribute. sql/ha_myisam.h: Made keyread (key scanning) a key specific attribute. sql/ha_myisammrg.h: Made keyread (key scanning) a key specific attribute. sql/handler.h: Made keyread (key scanning) a key specific attribute. sql/item_strfunc.cc: Cleanup of AES_xxx code sql/opt_range.cc: Made keyread (key scanning) a key specific attribute. sql/sql_base.cc: Made keyread (key scanning) a key specific attribute. sql/sql_cache.cc: Removed compiler warning sql/sql_select.cc: Removed wrong patch to fulltext problem sql/table.cc: Made keyread (key scanning) a key specific attribute. sql/table.h: Made keyread (key scanning) a key specific attribute.
42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/* Copyright (C) 2002 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
/*
|
|
rijndael-alg-fst.h
|
|
|
|
@version 3.0 (December 2000)
|
|
Optimised ANSI C code for the Rijndael cipher (now AES)
|
|
@author Vincent Rijmen <vincent.rijmen@esat.kuleuven.ac.be>
|
|
@author Antoon Bosselaers <antoon.bosselaers@esat.kuleuven.ac.be>
|
|
@author Paulo Barreto <paulo.barreto@terra.com.br>
|
|
|
|
This code is hereby placed in the public domain.
|
|
Modified by Peter Zaitsev to fit MySQL coding style.
|
|
*/
|
|
|
|
#define AES_MAXKC (256/32)
|
|
#define AES_MAXKB (256/8)
|
|
#define AES_MAXNR 14
|
|
|
|
int rijndaelKeySetupEnc(uint32 rk[/*4*(Nr + 1)*/], const uint8 cipherKey[],
|
|
int keyBits);
|
|
int rijndaelKeySetupDec(uint32 rk[/*4*(Nr + 1)*/], const uint8 cipherKey[],
|
|
int keyBits);
|
|
void rijndaelEncrypt(const uint32 rk[/*4*(Nr + 1)*/], int Nr,
|
|
const uint8 pt[16], uint8 ct[16]);
|
|
void rijndaelDecrypt(const uint32 rk[/*4*(Nr + 1)*/], int Nr,
|
|
const uint8 ct[16], uint8 pt[16]);
|