gpt4 book ai didi

java - 基于 Java 代码的 Crypt::CBC 的 Perl 问题

转载 作者:行者123 更新时间:2023-11-30 10:55:10 25 4
gpt4 key购买 nike

我有使用 AES/CBC 的 java 代码,我需要用 perl 重写。我的目标是在两种代码中重现相同的结果。可能吗?

import java.nio.charset.Charset;
import java.security.GeneralSecurityException;
import java.security.InvalidKeyException;
import java.util.Base64;

import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;

import org.apache.commons.lang3.StringUtils;

public class GenPass {

public static void main(String[] args) {
String secret = "secret"; /* same secret */
String password = args[0];
if (args.length > 1) {
secret = args[1];
}
System.out.println("Using secret: [" + secret + "]");
System.out.println("Password [" + password + "]");
String encodePassword = new GenPass().encodePassword(password, secret);
System.out.println("Encoded password [" + encodePassword + "]");
}

private String encodePassword(String password, String secret) {
try {
final SecretKeySpec secretKey = new SecretKeySpec(this.decodeHex(secret.toCharArray()), "AES"); /* same set*/
final Cipher cipher = Cipher.getInstance("AES/CBC/NoPadding"); // same set here

cipher.init(Cipher.ENCRYPT_MODE, secretKey, new IvParameterSpec(new byte[16]));

String paddedString = StringUtils.left(StringUtils.rightPad(password, 16, (char) 0), 16);

byte[] encryptedBytes = cipher.doFinal(paddedString.getBytes(Charset.forName("UTF-8")));
return Base64.getEncoder().encodeToString(encryptedBytes);

} catch (InvalidKeyException invalidKeyException) {
System.out.println("Chave incorreta durante criptografia da senha" + invalidKeyException);
throw new RuntimeException(invalidKeyException);

} catch (GeneralSecurityException generalSecurityException) {
System.out.println("Falha inesperada durante criptografia da senha" + generalSecurityException.toString());
throw new RuntimeException(generalSecurityException);
}

}

private String normalize(String password) {
char[] array = new char[16];
char[] temp = password.toCharArray();
System.arraycopy(temp, 0, array, 0, 16);
return String.valueOf(array);
}

public static byte[] decodeHex(final char[] data) {

final int len = data.length;

if ((len & 0x01) != 0) {
throw new RuntimeException("Odd number of characters.");
}

final byte[] out = new byte[len >> 1];

// two characters form the hex value.
for (int i = 0, j = 0; j < len; i++) {
int f = toDigit(data[j], j) << 4;
j++;
f = f | toDigit(data[j], j);
j++;
out[i] = (byte) (f & 0xFF);
}

return out;
}

protected static int toDigit(final char ch, final int index) {
final int digit = Character.digit(ch, 16);
if (digit == -1) {
throw new RuntimeException("Illegal hexadecimal character " + ch + " at index " + index);
}
return digit;
}
}

结果不一样。我无法弄清楚错误在哪里...

#!/usr/bin/perl -w

use strict;
use warnings;

use Crypt::CBC;
use MIME::Base64;
use Digest::MD5 qw(md5_hex);

my $plainText = "textsample";
my $iv = " ";
my $key = "secret";

my $cipher = Crypt::CBC->new(
-key => $key,
-iv => $iv,
-cipher => 'OpenSSL::AES',
-literal_key => 0,
-header => "none",
-padding => "null",
-keysize => 16
);

my $encrypted = $cipher->encrypt($plainText);
my $base64 = encode_base64($encrypted);

chomp $base64;
print("The '$plainText' encrypted is '$base64'\n");

最佳答案

我修复了,问题出在 -iv 参数上。

my $iv = ("\x0") x 16;

关于java - 基于 Java 代码的 Crypt::CBC 的 Perl 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33426033/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com