- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
尝试编译以下代码时,我每次都会生成 NoSuchAlgorithmException,无论我将什么字符串分配给算法变量(AES、DESede 等)。错误总是在构造函数中抛出,当我第一次尝试为键赋值时,我终究无法弄清楚问题是什么。我已经包含了整个文件,以防万一相关,但唯一的问题似乎是构造函数。如果有人熟悉这个问题并能指出我哪里出错了,我将不胜感激。
public class Seclib {
private static String algorithm = "AES";
private static Key key = null;
private static Cipher cipher = null;
public Seclib(){
key = KeyGenerator.getInstance(algorithm).generateKey();
cipher = Cipher.getInstance(algorithm);
}
public static String messageHash(String message) throws NoSuchAlgorithmException {
MessageDigest md = MessageDigest.getInstance("SHA-256");
md.update(message.getBytes());
return md.digest(message.getBytes()).toString();
}
public static byte[] encryptMessage(String input) throws InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
cipher.init(Cipher.ENCRYPT_MODE, key);
byte[] inputBytes = input.getBytes();
return cipher.doFinal(inputBytes);
}
private static String decrypt(byte[] encryptionBytes) throws InvalidKeyException, BadPaddingException, IllegalBlockSizeException {
cipher.init(Cipher.DECRYPT_MODE, key);
byte[] recoveredBytes =
cipher.doFinal(encryptionBytes);
String recovered = new String(recoveredBytes);
return recovered;
}
public static String initializeSecurityParameters(Scanner reader, int securityArray[]){
int flagC = 0;
int flagI = 0;
int flagA = 0;
String securityArrayString = "";
String s;
while(flagC == 0){
System.out.println("Does this session require confidentiality? Y/N");
System.out.println();
s = reader.next();
System.out.println();
if(s.equals("Y") || s.equals("y") || s.equals("N") || s.equals("n")){
if(s.equals("Y") || s.equals("y")){
securityArray[0] = 1;
flagC = 1;
}else{
securityArray[0] = 0;
flagC = 2;
}
}
if(flagC == 0){
System.out.println("Invalid entry, must be one of Y,y,N,n");
System.out.println();
}
}
while(flagI == 0){
System.out.println("Does this session require integrity? Y/N");
System.out.println();
s = reader.next();
System.out.println();
if(s.equals("Y") || s.equals("y") || s.equals("N") || s.equals("n")){
flagI = 1;
if(s.equals("Y") || s.equals("y")){
securityArray[1] = 1;
flagI = 1;
}else{
securityArray[1] = 0;
flagI = 2;
}
}
if(flagI == 0){
System.out.println("Invalid entry, must be one of Y,y,N,n");
System.out.println();
}
}
while(flagA == 0){
System.out.println("Does this session require authentication? Y/N");
System.out.println();
s = reader.next();
System.out.println();
if(s.equals("Y") || s.equals("y") || s.equals("N") || s.equals("n")){
if(s.equals("Y") || s.equals("y")){
securityArray[2] = 1;
flagA = 1;
}else{
securityArray[2] = 0;
flagA = 2;
}
}
if(flagA == 0){
System.out.println("Invalid entry, must be one of Y,y,N,n");
System.out.println();
}
}
//create security string
for(int i = 0; i < 3; i++){
securityArrayString = securityArrayString + String.valueOf(securityArray[i]);
}
//Use security array values to create key, etc based on need
if(securityArray[0] == 1){
System.out.println("C operations needed");
}
if(securityArray[1] == 1){
System.out.println("I operations needed");
}
if(securityArray[2] == 1){
System.out.println("A operations needed");
}
return securityArrayString;
}
}
最佳答案
Cipher 和 KeyGenerator 的 getInstance() 需要不同的输入:
key = KeyGenerator.getInstance("AES").generateKey();
cipher = Cipher.getInstance("AES/CBC/PKCS5Padding");
关于java - 尝试调用加密算法生成 NoSuchAlgorithmException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47197753/
我正在尝试用 C 编写一个简单的加密程序。我的目标是将 abc(它可以是任何单词)翻译成 123。然后乘以 2 得到 246 然后再次翻译成文本,然后在屏幕上写 bdf。这是我的算法,它不能正常工作。
互联网上有很多关于加密的答案,但我一直无法找到我正在寻找的东西:使用 c# 提供的工具对字符串和文本文件进行加密的简单强加密。 我的主要问题是我不知道如何将 IV 保存到文本文件的开头或如何创建随机
C#“RSACryptoServiceProvider”加密算法是 Microsoft-CryptoAPI 的一部分吗? 通过在 .Net 中使用 CryptoAPI 而不是“RSACryptoSer
我正在编写适用于“流”的 XXTEA 加密算法的实现,即可以像这样使用:crypt mykey 输出。 其中一个先决条件是它根本无法访问文件(它只读取固定大小的 block ,直到找到 EOF)。该
嘿,这是我老师给我的一个加密例子。但是,我仍然搞不懂(Int)Message[i]是什么意思?那么程序在这条线上做什么呢?
嘿,这是我老师给我的一个加密例子。但是,我仍然搞不懂(Int)Message[i]是什么意思?那么程序在这条线上做什么呢?
嘿,我研究这个已经有一段时间了,我记得我的兄弟引导我完成了这个完全相同的算法。 基本上,它只是添加键中字符和短语的 ascii 值。 我可以用这个加密它: def encrypt(key, strin
我正在尝试将 BouncyCaSTLe 与 android 一起使用来实现 ECDH 和 EL Gamal。我已经添加了 bouncycaSTLe jar 文件 (bcprov-jdk16-144.j
我需要加密一个数字,我和这个加密的值将提供给客户询问 key ,所以我想尽量减少数字的数量并使它们都可以打印。 所以我希望结果要么全是数字,要么全是十六进制字符。 我正在使用的当前加密方法(对于非数字
关闭。这个问题是opinion-based .它目前不接受答案。 想改善这个问题吗?更新问题,以便可以通过 editing this post 用事实和引文回答问题. 5年前关闭。 Improve t
我正在制作 note taking web app它会在您键入时连续保存笔记。我正在发送差异以防止通过线路发送过多数据,这在注释为纯文本时工作正常。 然而,我添加了对加密笔记的支持,所以笔记只会以加密
我正在寻找一种与 JavaScript 和 Java 兼容的安全对称 key 加密算法。 我已经尝试实现一个,但我遇到了一些编码问题。 最佳答案 您不想使用 JavaScript 加密,especia
目录 1 MD5 1.1 算法定义 1.2 MD5算法不安全的原因 1.2.1 字典表很大 1
在查看一些旧的 Coldfusion 代码时,我发现了几个通过加密/解密函数使用 CFMX_COMPAT 算法加密的数据实例。 找了一阵子,一直没找到这是什么算法。文档提到它现在是最不安全的方法,但我
谁能告诉我 iOS 上 SUP 用来加密底层数据库的加密算法是什么? 它是否依赖于 SQLite EE(加密扩展),如果是,使用了 4 种可用算法中的哪一种? 我的猜测是某种 AES,但官方文档中没有
我一直有这个问题。 The specified cryptographic algorithm is not supported on this platform. Exception Details
我正在为一个项目实现 3Des 加密算法。 我使用此代码作为示例: http://www.java2s.com/Code/Java/Security/TripleDES.htm 它工作正常,但我需要发
我正在尝试使用 adobe type 1 字体加密算法来加密文本文件。但是,我不知道如何用汇编语言正确地实现算法。如果可以,请帮助我。 下面是adobe type 1字体加密算法: unsigned
如何添加/创建具有特定加密算法的 c/c++ OpenSSL 静态库?假设我不想实现 md5。如何创建没有 md5 的库? 最佳答案 在配置脚本中你可以指定no-选项,它会在没有你指定的密码的情况下构
我检查了 TripleDES。它的 block 大小是 64 位。 有没有针对8位 block 大小的算法? 谢谢 编辑:我不打算将其用于完美保护,而是用于以防万一的情况,即看到代码的人不应该找到明文
我是一名优秀的程序员,十分优秀!