- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在创建加密和解密字符串的 android 应用程序我正在使用密码算法该应用程序可以很好地进行加密但是当我尝试解密系统时显示错误:
01-10 09:50:54.364: E/AndroidRuntime(602): Caused by: javax.crypto.IllegalBlockSizeException: last block incomplete in decryption
谁能帮我解决这个错误??
package com.devleb.encdecapp;
import java.io.UnsupportedEncodingException;
import java.security.GeneralSecurityException;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.KeyGenerator;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.PBEParameterSpec;
import android.app.Activity;
import android.os.Bundle;
import android.util.Base64;
import android.util.Log;
import android.view.ContextMenu;
import android.view.ContextMenu.ContextMenuInfo;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemSelectedListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Spinner;
public class MainActivity extends Activity implements OnClickListener {
// views for the layout
Spinner spin;
EditText edit_txt_pass;
static EditText edit_txt_enc_string;
EditText edit_txt_raw;
static EditText edit_txt_dec_string;
Button btn_encrypt, btn_decrypt, btn_clear;
static String cyphertext = "";
static String STReditTxtPass;
String strPaddingencryption;
static int iterations = 1000;
private static final String[] items = { "Padding Key derivation",
"SHA1PRNG key derivation", "PBKDF2 key derivation",
"PKCS#12 key derivation" };
private static final String TAG = MainActivity.class.getSimpleName();
private static final String[] Passwords = { "password", "cryptography",
"cipher", "algorithm", "qwerty" };
// mesage that will be binded with the key to generate the cypher text
private static String PlainText = "this is the text that will be encrypted";
// the list that will be used for the OnItemSelection method
private static final int PADDING_ENC_IDX = 0;
private static final int SHA1PRNG_ENC_IDX = 1;
private static final int PBKDF2_ENC_IDX = 2;
private static final int PKCS12_ENC_IDX = 3;
byte[] salt = { (byte) 0x11, (byte) 0x9B, (byte) 0xC6, (byte) 0xFE,
(byte) 0x33, (byte) 0x44, (byte) 0x55, (byte) 0x77 };;
static byte[] ivBytes = {0,0,0,0,0,0,0,0};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// creation of the spinner with setting Array adapter and
// DropDownresourse
spin = (Spinner) findViewById(R.id.spiner);
spin.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> arg0, View arg1,
int arg2, long arg3) {
// TODO Auto-generated method stub
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
// TODO Auto-generated method stub
}
});
ArrayAdapter<String> aa = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, items);
aa.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
spin.setAdapter(aa);
// end of the spinner code
edit_txt_pass = (EditText) findViewById(R.id.editTxtPass);
edit_txt_enc_string = (EditText) findViewById(R.id.editTxtEncString);
edit_txt_raw = (EditText) findViewById(R.id.editTxtRawKey);
edit_txt_dec_string = (EditText) findViewById(R.id.editTxtDecString);
btn_encrypt = (Button) findViewById(R.id.btnEncrypt);
btn_encrypt.setOnClickListener(this);
btn_decrypt = (Button) findViewById(R.id.btnDecrypt);
btn_decrypt.setOnClickListener(this);
btn_clear = (Button) findViewById(R.id.btnClear);
btn_clear.setOnClickListener(this);
// / for registering the editText to the Context Menu
registerForContextMenu(edit_txt_pass);
}
// for the ciphering of the plainText using the base 64
public static String toBase64(byte[] bytes) {
return Base64.encodeToString(bytes, Base64.NO_WRAP);
}
public static byte[] fromBase64(byte[] bytes) {
// return Base64.encodeToString(bytes, Base64.NO_WRAP);
return Base64.decode(bytes, Base64.DEFAULT);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v,
ContextMenuInfo menuInfo) {
// TODO Auto-generated method stub
int groupId = 0;
menu.add(groupId, 1, 1, "password");
menu.add(groupId, 2, 2, "cryptography");
menu.add(groupId, 3, 3, "cipher");
menu.add(groupId, 4, 4, "algorithm");
menu.add(groupId, 5, 5, "qwerty");
super.onCreateContextMenu(menu, v, menuInfo);
}
@Override
public boolean onContextItemSelected(MenuItem item) {
// TODO Auto-generated method stub
return getText(item);
// return super.onContextItemSelected(item);
}
private boolean getText(MenuItem item) {
// TODO Auto-generated method stub
int menuItemId = item.getItemId();
if (menuItemId == 1) {
edit_txt_pass.setText("password");
}
if (menuItemId == 2) {
edit_txt_pass.setText("cryptography");
}
if (menuItemId == 3) {
edit_txt_pass.setText("cipher");
}
if (menuItemId == 4) {
edit_txt_pass.setText("algorithm");
}
if (menuItemId == 5) {
edit_txt_pass.setText("qwerty");
}
STReditTxtPass = edit_txt_pass.getText().toString();
Log.w("the String of the Password text", STReditTxtPass);
return false;
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if (v == btn_encrypt) {
encryptPadding(PlainText, salt);
} else if (v == btn_clear) {
edit_txt_enc_string.setText("");
} else if (v == btn_decrypt) {
decryptPadding(cyphertext, salt);
}
}
public static String encryptPadding(String plaintext, byte[] salt) {
try {
KeyGenerator kg = KeyGenerator.getInstance("DES");
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
SecretKey SKey = kg.generateKey();
cipher.init(Cipher.ENCRYPT_MODE, SKey);
byte[] cipherText = cipher.doFinal(PlainText.getBytes("UTF-8"));
cyphertext = String.format("%s%s%s", toBase64(salt), "]",
toBase64(cipherText));
edit_txt_enc_string.setText(cyphertext);
return cyphertext;
} catch (GeneralSecurityException e) {
throw new RuntimeException(e);
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
public static String decryptPadding(String ctext, byte[] salt) {
try {
KeyGenerator kg = KeyGenerator.getInstance("DES");
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
SecretKey SKey = kg.generateKey();
IvParameterSpec ivSpec = new IvParameterSpec(ivBytes);
cipher.init(Cipher.DECRYPT_MODE, SKey, ivSpec);
byte[] plaintxt = cipher.doFinal(cyphertext.getBytes("UTF-8"));
PlainText = String.format("%s%s%s", fromBase64(salt), "]",
fromBase64(plaintxt));
edit_txt_dec_string.setText(PlainText);
return PlainText;
} catch (GeneralSecurityException e) {
throw new RuntimeException(e);
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
}
最佳答案
您必须使用相同的 key 进行解密和加密
SecretKey SKey = kg.generateKey();
这为两个操作创建了一个新 key 。您需要使用相同的 key 。
更改以下方法:
public String encryptPadding(String plaintext, byte[] salt) {
try {
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
cipher.init(Cipher.ENCRYPT_MODE, SKey);
byte[] cipherText = cipher.doFinal(PlainText.getBytes("UTF-8"));
cyphertext = String.format("%s%s%s", toBase64(salt), "]",
toBase64(cipherText));
edit_txt_enc_string.setText(cyphertext);
return cyphertext;
} catch (GeneralSecurityException e) {
throw new RuntimeException(e);
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
public String decryptPadding(String ctext, byte[] salt) {
try {
Cipher cipher = Cipher.getInstance("DES/CBC/PKCS5Padding");
IvParameterSpec ivSpec = new IvParameterSpec(ivBytes);
cipher.init(Cipher.DECRYPT_MODE, SKey, ivSpec);
byte[] plaintxt = cipher.doFinal(cyphertext.getBytes("UTF-8"));
PlainText = String.format("%s%s%s", fromBase64(salt), "]",
fromBase64(plaintxt));
edit_txt_dec_string.setText(PlainText);
return PlainText;
} catch (GeneralSecurityException e) {
throw new RuntimeException(e);
} catch (UnsupportedEncodingException e) {
throw new RuntimeException(e);
}
}
在你的类中创建一个新字段:
private SecretKey SKey;
并在您的 onCreate 方法中添加这些行:
KeyGenerator kg = KeyGenerator.getInstance("DES");
SKey = kg.generateKey();
关于android - 用密码算法加密解密显示错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21039119/
我已经使用 vue-cli 两个星期了,直到今天一切正常。我在本地建立这个项目。 https://drive.google.com/open?id=0BwGw1zyyKjW7S3RYWXRaX24tQ
您好,我正在尝试使用 python 库 pytesseract 从图像中提取文本。请找到代码: from PIL import Image from pytesseract import image_
我的错误 /usr/bin/ld: errno: TLS definition in /lib/libc.so.6 section .tbss mismatches non-TLS reference
我已经训练了一个模型,我正在尝试使用 predict函数但它返回以下错误。 Error in contrasts<-(*tmp*, value = contr.funs[1 + isOF[nn]])
根据Microsoft DataConnectors的信息我想通过 this ODBC driver 创建一个从 PowerBi 到 PostgreSQL 的连接器使用直接查询。我重用了 Micros
我已经为 SoundManagement 创建了一个包,其中有一个扩展 MediaPlayer 的类。我希望全局控制这个变量。这是我的代码: package soundmanagement; impo
我在Heroku上部署了一个应用程序。我正在使用免费服务。 我经常收到以下错误消息。 PG::Error: ERROR: out of memory 如果刷新浏览器,就可以了。但是随后,它又随机发生
我正在运行 LAMP 服务器,这个 .htaccess 给我一个 500 错误。其作用是过滤关键字并重定向到相应的域名。 Options +FollowSymLinks RewriteEngine
我有两个驱动器 A 和 B。使用 python 脚本,我在“A”驱动器中创建一些文件,并运行 powerscript,该脚本以 1 秒的间隔将驱动器 A 中的所有文件复制到驱动器 B。 我在 powe
下面的函数一直返回这个错误信息。我认为可能是 double_precision 字段类型导致了这种情况,我尝试使用 CAST,但要么不是这样,要么我没有做对...帮助? 这是错误: ERROR: i
这个问题已经有答案了: Syntax error due to using a reserved word as a table or column name in MySQL (1 个回答) 已关闭
我的数据库有这个小问题。 我创建了一个表“articoli”,其中包含商品的品牌、型号和价格。 每篇文章都由一个 id (ID_ARTICOLO)` 定义,它是一个自动递增字段。 好吧,现在当我尝试插
我是新来的。我目前正在 DeVry 在线学习中级 C++ 编程。我们正在使用 C++ Primer Plus 这本书,到目前为止我一直做得很好。我的老师最近向我们扔了一个曲线球。我目前的任务是这样的:
这个问题在这里已经有了答案: What is an undefined reference/unresolved external symbol error and how do I fix it?
我的网站中有一段代码有问题;此错误仅发生在 Internet Explorer 7 中。 我没有在这里发布我所有的 HTML/CSS 标记,而是发布了网站的一个版本 here . 如您所见,我在列中有
如果尝试在 USB 设备上构建 node.js 应用程序时在我的树莓派上使用 npm 时遇到一些问题。 package.json 看起来像这样: { "name" : "node-todo",
在 Python 中,您有 None单例,在某些情况下表现得很奇怪: >>> a = None >>> type(a) >>> isinstance(a,None) Traceback (most
这是我的 build.gradle (Module:app) 文件: apply plugin: 'com.android.application' android { compileSdkV
我是 android 的新手,我的项目刚才编译和运行正常,但在我尝试实现抽屉导航后,它给了我这个错误 FAILURE: Build failed with an exception. What wen
谁能解释一下?我想我正在做一些非常愚蠢的事情,并且急切地等待着启蒙。 我得到这个输出: phpversion() == 7.2.25-1+0~20191128.32+debian8~1.gbp108
我是一名优秀的程序员,十分优秀!