文件名称:Decrypt-Affine-Cipher-Java:解密仿射密码密文的Java程序
文件大小:2KB
文件格式:ZIP
更新时间:2024-03-06 06:50:19
Java
解密仿射密码Java 解密仿射密文密文的Java程序。 // Matthew Torontali // 8/27/20 // Decrypt affine cipher in Java import java.util.Scanner ; public class Affine { // find the multiplicative inverse of a within the group of integers between 0-26 // if (a * i) & == 1 then we have found the multiplicative inverse of a static int multiInverse ( int a ) { // declare variables int bool;
【文件预览】:
Decrypt-Affine-Cipher-Java-main
----README.md(2KB)
----Affine.java(2KB)