As3 Crypto is a cryptography library written in Actionscript 3 that provides several common algorithms. This version also introduces a TLS engine (TLS is commonly known as SSL.) Protocols: TLS 1.0 support (partial) Certificates: X.509 Certificate parsing and validation, built-in Root CAs. Public Key Encryption: RSA (encrypt/decrypt, sign/verify) Secret Key Encryption: AES, DES, 3DES, BlowFish, XTE
Base64や16進数とByteArrayとの変換に使うutility http://crypto.hurlant.com/ ■base64 import com.hurlant.util.Base64; // 文字列をBase64エンコード var encoded:String = Base64.encode('ほげ'); // ByteArrayをBase64エンコード var bytes:ByteArray = new ByteArray(); bytes.writeUTFBytes("ほげほげ"); var encoded2:String = Base64.encodeByteArray(bytes); // Base64にエンコードされた文字列をデコードして元の文字列に var decoded:String = Base64.decod
http://crypto.hurlant.com/の暗号まわりのフレームワークがよさげです。 Base64や16進数とByteArrayとの変換に使うutilityがあります。 暗号化前、暗号化後のデータ変換で便利そげ。 Base64 import com.hurlant.util.Base64; // 文字列をBase64エンコード var encoded:String = Base64.encode('ほげ'); // ByteArrayをBase64エンコード var bytes:ByteArray = new ByteArray(); bytes.writeUTFBytes("ほげほげ"); var encoded2:String = Base64.encodeByteArray(bytes); // Base64にエンコードされた文字列をデコードして元の文字列に var dec
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く