Perl で、Base64 のファイルをデコードして元のバイナリファイルに戻す方法

メールに添付されてきた .pdf ファイルが巨大すぎてメールサーバによって分割されて自分のところに配信された結果、Base64 のデータがバラバラに届いたケースを考える。 このような場合は Perl が活躍する。まず、バラバラになった Base64 のファイルは仕方がないのでエディタを使って手作業でくっつけて 1つのファイルにする。そのあと、以下のコマンドを実行すればよい。 使用するモジュール use MIME::Base64;
perl -MMIME::Base64 -ne 'print decode_base64($_)'
< くっつけたBase64ファイル名.txt > 出力ファイル名.pdf

(上は、すべて1行に書く)
メールに添付されてきた .pdf ファイルが巨大すぎてメールサーバによって分割されて自分のところに配信された結果、Base64 のデータがバラバラに届いたケースを考える。 このような場合は Perl が活躍する。まず、バラバラになった Base64 のファイルは仕方がないのでエディタを使って手作業でくっつけて 1つのファイルにする。そのあと、以下のコマンドを実行すればよい。 使用するモジュール use MIME::Base64;
perl -MMIME::Base64 -ne 'print decode_base64($_)'
< くっつけたBase64ファイル名.txt > 出力ファイル名.pdf

(上は、すべて1行に書く)

Java で、ランダムな文字列を生成する方法

SecureRandom クラスを使う。以下は、16 バイトのランダムなバイト列を作る例。
import java.security.*;

...

public final static String RANDOM_ALGORITHM = "SHA1PRNG";
public final static int    RANDOM_LENGTH    = 16;

...

public byte[] getRandom() {

    try {

        SecureRandom random = SecureRandom.getInstance(RANDOM_ALGORITHM);
        byte seed[]         = random.generateSeed(RANDOM_LENGTH);
        byte b[]            = new byte[RANDOM_LENGTH];

        random.setSeed(seed);
        random.nextBytes(b);

    }catch(Exception e) {
        e.printStackTrace();
    }

    return b;
}
SecureRandom クラスを使う。以下は、16 バイトのランダムなバイト列を作る例。
import java.security.*;

...

public final static String RANDOM_ALGORITHM = "SHA1PRNG";
public final static int    RANDOM_LENGTH    = 16;

...

public byte[] getRandom() {

    try {

        SecureRandom random = SecureRandom.getInstance(RANDOM_ALGORITHM);
        byte seed[]         = random.generateSeed(RANDOM_LENGTH);
        byte b[]            = new byte[RANDOM_LENGTH];

        random.setSeed(seed);
        random.nextBytes(b);

    }catch(Exception e) {
        e.printStackTrace();
    }

    return b;
}

Java で、AES または DES でテキストを暗号化・復号化する方法

以下の encrypt メソッドの引数に String でテキスト文字列を渡すと、暗号化されたものがバイト列で返ってくる。復号は decrypt の引数にそのバイト列を渡す。両メソッド共、crypt_spec 引数に AES を指定すれば AES で暗号するし、DES を指定すれば DES で暗号化する。
import java.io.*;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;

// CHANGE THIS VALUE DEPENDING ON WHAT YOU WANT
public static final int MESSAGE_LENGTH = 1024;

/**
* @param text
*            Message to encrypt
* @param secret_key
*            Secret Key
* @param crypt_spec
*            Crypt algorithm like "AES" or "DES"
* @return Encrypted Byte Strings
*/
public byte[] encrypt(String text, byte[] secret_key, String crypt_spec)
        throws InvalidKeyException, IllegalBlockSizeException, IOException,
        BadPaddingException {

    SecretKeySpec sKey = new SecretKeySpec(secret_key, crypt_spec);
    byte[] secret = new byte[MESSAGE_LENGTH];

    try {
        Cipher cipher = Cipher.getInstance(crypt_spec);
        cipher.init(Cipher.ENCRYPT_MODE, sKey);
        secret = cipher.doFinal(text.getBytes());
    } catch (Exception e) {
        System.out.println(this.getClass().getName()
                + ".encrypt: Exception:");
        e.printStackTrace();
    }
    return secret;
}

/**
* @param b
*            Encypted Byte Message
* @param crypt_spec
*            Crypt Algorithm like "AES" or "DES"
* @return Decrypted String
*/
public String decrypt(byte[] b, byte[] secret_key, String crypt_spec)
        throws InvalidKeyException, IllegalBlockSizeException, IOException,
        BadPaddingException {

    SecretKeySpec sKey = new SecretKeySpec(secret_key, crypt_spec);
    byte[] secret = new byte[MESSAGE_LENGTH];

    try {
        Cipher cipher = Cipher.getInstance(crypt_spec);
        cipher.init(Cipher.DECRYPT_MODE, sKey);
        secret = cipher.doFinal(b);
    } catch (Exception e) {
        System.out.println(this.getClass().getName()
                + ".decrypt: Exception:");
        e.printStackTrace();
    }
    return new String(secret);
}
以下の encrypt メソッドの引数に String でテキスト文字列を渡すと、暗号化されたものがバイト列で返ってくる。復号は decrypt の引数にそのバイト列を渡す。両メソッド共、crypt_spec 引数に AES を指定すれば AES で暗号するし、DES を指定すれば DES で暗号化する。
import java.io.*;
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;

// CHANGE THIS VALUE DEPENDING ON WHAT YOU WANT
public static final int MESSAGE_LENGTH = 1024;

/**
* @param text
*            Message to encrypt
* @param secret_key
*            Secret Key
* @param crypt_spec
*            Crypt algorithm like "AES" or "DES"
* @return Encrypted Byte Strings
*/
public byte[] encrypt(String text, byte[] secret_key, String crypt_spec)
        throws InvalidKeyException, IllegalBlockSizeException, IOException,
        BadPaddingException {

    SecretKeySpec sKey = new SecretKeySpec(secret_key, crypt_spec);
    byte[] secret = new byte[MESSAGE_LENGTH];

    try {
        Cipher cipher = Cipher.getInstance(crypt_spec);
        cipher.init(Cipher.ENCRYPT_MODE, sKey);
        secret = cipher.doFinal(text.getBytes());
    } catch (Exception e) {
        System.out.println(this.getClass().getName()
                + ".encrypt: Exception:");
        e.printStackTrace();
    }
    return secret;
}

/**
* @param b
*            Encypted Byte Message
* @param crypt_spec
*            Crypt Algorithm like "AES" or "DES"
* @return Decrypted String
*/
public String decrypt(byte[] b, byte[] secret_key, String crypt_spec)
        throws InvalidKeyException, IllegalBlockSizeException, IOException,
        BadPaddingException {

    SecretKeySpec sKey = new SecretKeySpec(secret_key, crypt_spec);
    byte[] secret = new byte[MESSAGE_LENGTH];

    try {
        Cipher cipher = Cipher.getInstance(crypt_spec);
        cipher.init(Cipher.DECRYPT_MODE, sKey);
        secret = cipher.doFinal(b);
    } catch (Exception e) {
        System.out.println(this.getClass().getName()
                + ".decrypt: Exception:");
        e.printStackTrace();
    }
    return new String(secret);
}

Java で、cookie を処理する方法

ずばり、J2SE のドキュメントのページ「cookie サポート」が詳しい。以下のコードを参照のこと。
String protocol = "http";
String hostname = "yourdomain.com";
int port = 80;
String file = "/";

try {

    URL url = new URL(protocol, hostname, port, file);

    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setDoInput(true);    // Input OK
    conn.setDoOutput(true);   // Output OK
    conn.setUseCaches(false); // Cache NG
    conn.setRequestProperty("Content-type",
            "application/x-www-form-urlencoded");
    conn.connect();           // Connect

    boolean isRedirect = HttpURLConnection.getFollowRedirects();

    String cookieValue = null;
    try {
        Map<String, List<String>> headers = conn.getHeaderFields();
        List<String> values = headers.get("Set-Cookie");
        for (Iterator<String> iter = values.iterator(); iter.hasNext();) {
            String v = iter.next();
            if (cookieValue == null)
                cookieValue = v;
            else
                cookieValue = cookieValue + ";" + v;
        }
    } catch (Exception e) {
    }
    System.out.println(this.getClass().getName()
            + ": cookieValue: " + cookieValue);

   conn.close();

} catch (Exception e) {
    e.printStackTrace();
    return false;
}
ずばり、J2SE のドキュメントのページ「cookie サポート」が詳しい。以下のコードを参照のこと。
String protocol = "http";
String hostname = "yourdomain.com";
int port = 80;
String file = "/";

try {

    URL url = new URL(protocol, hostname, port, file);

    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setDoInput(true);    // Input OK
    conn.setDoOutput(true);   // Output OK
    conn.setUseCaches(false); // Cache NG
    conn.setRequestProperty("Content-type",
            "application/x-www-form-urlencoded");
    conn.connect();           // Connect

    boolean isRedirect = HttpURLConnection.getFollowRedirects();

    String cookieValue = null;
    try {
        Map<String, List<String>> headers = conn.getHeaderFields();
        List<String> values = headers.get("Set-Cookie");
        for (Iterator<String> iter = values.iterator(); iter.hasNext();) {
            String v = iter.next();
            if (cookieValue == null)
                cookieValue = v;
            else
                cookieValue = cookieValue + ";" + v;
        }
    } catch (Exception e) {
    }
    System.out.println(this.getClass().getName()
            + ": cookieValue: " + cookieValue);

   conn.close();

} catch (Exception e) {
    e.printStackTrace();
    return false;
}
Posted on 2006-06-15 by yas |