Method to obtain modular inverse matrices sized n x n considering computational efficiency and applications in symmetric cryptography. It is also discussed about some phenomenon in linear arithmetic spaces and some theorems found. This work is an important contribution to knowledge and direct appliance in data security problems in computer science context. Based on research and experiments conducted, it was observed that this method is precise, defined and finite, so it can be programmed in any computer language.
n = 10; % size of the matrix
K = randi(100,n,n); % generate a randon matrix with size 'n'
m = 89; % modulus -> prime number
[InvMod, I] = gauss_jacques(K, m);
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- https://www.uaq.mx/investigacion/revista_ciencia@uaq/ArchivosPDF/v11-n1/art14_numerada-VF.pdf
- https://savannah.gnu.org/patch/?9691
- https://www.npmjs.com/package/gauss-jacques
- Fausto Abraham Jacques-García - jacques@uaq.edu.mx - Gauss-Jacques Method
- Adolfo Solis-Rosas - adolfo2794@gmail.com
- Aldo Valencia-Palma - aldo.valencia.palma@gmail.com
- Vania Hinojosa-Navarro - vania.hinojosa@gmail.com
- Sergio Carrillo-Paredes - s.carrilloparedes@gmail.com
- Daniel Cantón-Enriquez - daniel_ce92@outlook.com
This project is licensed under the MIT License