项目作者: dCantonE

项目描述 :
Calculate of modular inverse matrices using Gauss-Jacques algorithm sized n x n for applications in cryptography.
高级语言: MATLAB
项目地址: git://github.com/dCantonE/gauss-jacques.git
创建时间: 2019-03-09T00:38:48Z
项目社区:https://github.com/dCantonE/gauss-jacques

开源协议:GNU General Public License v3.0

下载


Gauss-Jacques Method

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.

Example

MATLAB

  1. n = 10; % size of the matrix
  2. K = randi(100,n,n); % generate a randon matrix with size 'n'
  3. m = 89; % modulus -> prime number
  4. [InvMod, I] = gauss_jacques(K, m);

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

References

Intellectual author

Contributors

License

This project is licensed under the MIT License