warning: Creating default object from empty value in /var/www/drupal-5.23/modules/taxonomy/taxonomy.module on line 1418.

Perl で、サーバにモジュールがインストールされているか確認する方法

コマンドラインから、以下の 1行を実行する。 引数 -M と <モジュール名> の間には、スペースはいらない。
# perl -M<モジュール名> -e ''
もしモジュールがインストールされていれば何も起こらない。モジュールがインストールされていなければ Can't locate <モジュール名>.pm 云々というエラーが出る。
コマンドラインから、以下の 1行を実行する。 引数 -M と <モジュール名> の間には、スペースはいらない。
# perl -M<モジュール名> -e ''
もしモジュールがインストールされていれば何も起こらない。モジュールがインストールされていなければ Can't locate <モジュール名>.pm 云々というエラーが出る。

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);
}

PHP で、CGI 環境変数を表示するには?

PHP の場合は、CGI の環境変数は組み込み変数である $_SERVER に入る。以下の内容を env.php などのファイル名で保存し、ブラウザからアクセスする。
<?php

print '<p align="center"><font face="MS Trebuchet, Arial, Helvetica" size="9pt"><table>';
foreach(
$_SERVER as $key => $e) {
    print
'<tr><td>';
    print
"$key</td><td>$e";
    print
'</td></tr>';
}
print
'</table></p>';

?>
PHP の場合は、CGI の環境変数は組み込み変数である $_SERVER に入る。以下の内容を env.php などのファイル名で保存し、ブラウザからアクセスする。
<?php

print '<p align="center"><font face="MS Trebuchet, Arial, Helvetica" size="9pt"><table>';
foreach(
$_SERVER as $key => $e) {
    print
'<tr><td>';
    print
"$key</td><td>$e";
    print
'</td></tr>';
}
print
'</table></p>';

?>