間の通信を実装しようとしています
Python サーバー側では、文字列を aniv
と apassphrase
で暗号化し、暗号化されたテキスト base64 でエンコードされた iv をjavascript クライアント側に送信します。次にdecrypt
、ユーザーが入力できるパスフレーズを含む文字列が必要です。
python-サーバー
from Crypto.Cipher import AES
from Crypto import Random
iv = Random.get_random_bytes(16)
key = "1234567812345678"
aes = AES.new(key, AES.MODE_CFB, iv)
encrypted_text = base64.b64encode(aes.encrypt("this is a test.."))
iv = base64.b64encode(iv)
# send iv, encrypted_text to client
JavaScript - クライアント
// <script type="text/javascript"
src="http://crypto-js.googlecode.com/files/2.5.3-crypto-sha1-hmac-pbkdf2-blockmodes-aes.js">
</script>
// text, and iv is base64encoded from the python script
// key is a string from an <input type='text'>
decrypted = Crypto.AES.decrypt(text, key, {iv: iv, mode: new Crypto.mode.CFB});
この例では、javascript エラーが発生します
Uncaught URIError: URI malformed
しかし、これは 1 つの例にすぎません。考えられる base64 エンコーディング/デコーディングのすべてのコンスタレーションを試しました。モードも変えてみました。しかし、これらはすべてランダムなテストであり、私が本当にしなければならないことを理解したい.
- crypt-js が必要とするエンコーディングは何ですか?
- どのモードを選択すればよいですか?
- Pythonサーバー側で変更する必要があるものはありますか?
- パディングとは何ですか?障害がある可能性がありますか?
- 他に推奨できる JavaScript ライブラリはありますか?
どうもありがとうございました。