- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试为大学项目创建一个密码程序,我能够创建密码,但无法对其进行编码。我的代码如下,有人可以引导我走向正确的方向吗?前两种方法都可以,主要是我遇到问题的最后两种方法。这是我进行任何类型编程的第一个学期,所以我对此还很陌生。
import java.util.Scanner;
import java.util.Random;
public class Cipher
{
public static void main (String[] args){
System.out.print("Please type a sentence to be encrypted\n");
Scanner inputScanner = new Scanner(System.in);
String input = inputScanner.next();
input = input.toLowerCase();
char[] inputArray=input.toCharArray();
inputScanner.close();
char[] alphabetArray = {' ','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q'
,'r','s','t','u','v','w','x','y','z'};
char[] cipherArray = alphabetArray.clone();
createCipher(cipherArray);
encrypt(alphabetArray, inputArray, cipherArray);
for(int index=0; index<alphabetArray.length; index++)
{
System.out.print(alphabetArray[index]);
}
System.out.print("\n");
for(int index2=0; index2<cipherArray.length; index2++)
{
System.out.print(cipherArray[index2]);
}
System.out.print("\nYour encrypted message is:\n");
for(int index3=0; index3<inputArray.length; index3++)
{
System.out.print(inputArray[index3]);
}
System.out.print("\n");
decrypt(alphabetArray, inputArray, cipherArray);
for(int index4=0;index4<inputArray.length; index4++)
{
System.out.print(inputArray[index4]);
}
}
public static void createCipher( char[] alphabet )
{
if (alphabet!=null)
{
Random generator = new Random();
for (int index=0; index<alphabet.length; index++ )
{
int otherIndex = generator.nextInt(alphabet.length);
char temp = alphabet[index];
alphabet[index] = alphabet[otherIndex];
alphabet[otherIndex] = temp;
}
}
}
public static void encrypt(char[] alphabet, char[] input, char[] cipher)
{
if(input!=null)
{
for(int index =0; index<input.length; index++)
{
for(int index2 =0; index2<alphabet.length; index2++)
{
if(input[index]==alphabet[index2])
{
input[index]=cipher[index2];
}
}
}
}
}
public static void decrypt(char[] alphabet, char[] encryptedInput, char[] cipher)
{
if(encryptedInput!=null)
{
for(int index =0; index<encryptedInput.length; index++ )
{
for(int index2=0; index2<cipher.length; index2++)
{
if(encryptedInput[index]==cipher[index2])
{
encryptedInput[index]=alphabet[index2];
}
}
}
}
}
}
最佳答案
在这个方法中
public static void encrypt(char[] alphabet, char[] input, char[] cipher)
{
if(input!=null)
{
for(int index =0; index<input.length; index++)
{
for(int index2 =0; index2<alphabet.length; index2++)
{
if(input[index]==alphabet[index2])
{
input[index]=cipher[index2];
}
}
}
}
}
您需要在语句 input[index]=cipher[index2];
之后键入 return;
您应该在解密() 方法中执行相同的操作。那么你的程序应该没问题。现在,您是否也可以手动执行不正确的代码,并告诉我为什么需要 return 语句?
关于java - 使用 Cipher 程序对文本进行编码和解码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20923378/
使用 Cipher.ENCRYPT_MODE 有什么区别/好处/缺点吗加密 key 以使用 Cipher.WRAP_MODE 进行传输? 我的理解是,我仍然需要第二个,可能更小的 key 来包装/加密
我创建了一个传递两个缓冲区的密码。 buf1 是它们的键,一个 32 字节的缓冲区,而 buf2,即 IV,也是一个 32 字节的缓冲区,我将其切片为仅使用 16 字节。文档说 cipher.upda
我刚刚将我的 Mac 升级到 Snow Leopard,并启动并运行了我的 Rails 环境。除了 OSX 之外,我之前安装的唯一区别是我现在运行的是 ruby 1.8.7 (2008-08-11 p
正在尝试在客户端和服务器之间建立 SSL 连接。但每当我尝试从客户端连接时,我的服务器上都会收到 javax.net.ssl.SSLHandshakeException: no cipher suit
在多线程 Java 应用程序中,我们使用 AES-256 对磁盘文件进行加密和解密。请注意,多个线程可以同时调用不同文件的加密和解密方法。 加密: Cipher encrypter = Cipher.
我试图将安全提供程序从 SunJCE 切换到 Bouncy CaSTLe (BC),并在 Cipher 对象中偶然发现了这种特殊行为。据我所知,SunJCE 的 cipher.update(bytes
我应该如何使用从服务器端传输的公钥在客户端加密 session key ? 我应该使用 Cipher.WRAP_MODE 还是 Cipher.ENCRYPT_MODE? Cipher cipher =
SecretKey key = keyFactory.generateSecret(keySpec); Cipher cipher = Cipher.getInstance("AES/CBC/PKCS
我正在尝试使用 AES 解密字符串,并且使用 jce.jar 来执行此操作。 我有以下方法来解密。 public String decrypt(String strToDecrypt) {
我有一个带有解密功能的 Android 应用程序,如下所示: private static byte[] decrypt(byte[] keybytes, byte[] data) { Sec
我正在实现 DES - CBC。我对 cipher.init 、 cipher.update 和 cipher.dofinal 的作用感到困惑。我只是使用 init 来设置 key 并使用 dofin
使用 Digicert's SSL mechanism explanation我已经了解数据在浏览器和服务器之间是如何加密的,以下是我的理解。 浏览器将向服务器发送请求以获取一些资源。服务器检查请求的
我正在使用 javax.crypto 在 java 中进行 AES CBC 解密。我正在使用以下 Cipher 类方法: public final void init (int opmode, Key
我能否在多个方法中使用相同的 Cipher 对象,因为 getInstance 和 init 的方法参数不会改变? 例如,假设应用程序的多个部分使用实用程序类中的 decrypt 方法。所有传递的加密
很简单,javax.crypto.Cipher 的一个实例(例如 Cipher.getInstance("RSA"))可以从多个线程中使用,还是我需要将它们中的多个粘贴在 ThreadLocal 中(
Rails4默认使用加密的cookie session 存储。当应用程序尝试加密cookie时,会引发以下错误:OpenSSL::Cipher::CipherError: Illegal key si
我正在使用this code . 当所有代码都在 main 方法中的一个 try catch 中时,它似乎可以工作,但当它被分成另一个类并通过 Security 对象调用解密时,它就不起作用了。 我猜
我目前正在使用 Cipher 创建一个使用始终相同的 key 的解决方案。我知道这不是最安全的解决方案,但这是我被要求做的。我应该使用 AES256 和 EBC,但我无法正确加密。问题是我有未知的字符
我正在尝试读取一个大小为1KB的文件,然后使用CBC模式下的AES算法对其进行加密和解密。当我尝试初始化密码时,它抛出一个错误。请找到下面的代码。我在密码类中找不到接受“加密模式”、“ key ”和类
你好,我构建了这两种方法,加密工作正常,但解密出现错误,因为密码想要一个字节,我想从字符串加密 import javax.crypto.Cipher; import javax.crypto.spec
我是一名优秀的程序员,十分优秀!