https://raw.github.com/usefulfor/usefulfor/master/security/JBoss.javaにあるコードを使用して、次のことを行いました。
bash-3.2$ java -cp . JBoss -e testpython
-27038292d345798947e2852756afcf0a
bash-3.2$ java -cp . JBoss -d -27038292d345798947e2852756afcf0a
testpython
ただし、Pythonでpycryptoを使用して文字列「27038292d345798947e2852756afcf0a」を復号化する方法を理解することはできません。私の理解では、Java コードは Blowfish を使用しており、「jaas is the way」というフレーズが暗号のキーとして使用されています。しかし、Pythonでこれを行う方法がわかりません。次の結果は、ほとんど印刷できないガベージになります。
import Crypto
from Crypto.Cipher import Blowfish
from base64 import b64encode, b64decode
bs = Blowfish.block_size
key = 'jaas is the way'
plaintext = b'27038292d345798947e2852756afcf0a'
iv = '\0' * 8
c1 = Blowfish.new(key, Blowfish.MODE_ECB)
c2 = Blowfish.new(key, Blowfish.MODE_CBC, iv)
c3 = Blowfish.new(key, Blowfish.MODE_CFB, iv)
c4 = Blowfish.new(key, Blowfish.MODE_OFB, iv)
msg1 = c1.decrypt(plaintext)
msg2 = c2.decrypt(plaintext)
msg3 = c3.decrypt(plaintext)
msg4 = c4.decrypt(plaintext)
print "msg1 = %s\n" % msg1
print "msg2 = %s\n" % msg2
print "msg3 = %s\n" % msg3
print "msg4 = %s\n" % msg4
何が欠けていますか?
ありがとう。