|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||
java.lang.Objectcom.JRcServer.commons.conv.Asc64
public class Asc64
ASC64情報変換処理群.
ASC64情報変換処理をサポートします.
| メソッドの概要 | |
|---|---|
static java.lang.String |
convertAsc64ByAscii(int[] asc64)
ASC64コード変換 ASC64 -> ASCII. |
static byte[] |
convertAsc64ByEnc(int[] asc64)
対象のASC64コードを暗号化. |
static int[] |
convertAsciiByAsc64(byte[] asc)
ASC64コード変換 ASCII -> ASC64. |
static int[] |
convertEncByAsc64(byte[] enc)
対象の暗号化されたASC64コードを元に戻す. |
static boolean |
isAsc64(java.lang.String string)
対象文字列が有効範囲内であるかチェック. |
static byte[] |
rounds(byte[] binary)
対象バイナリをASC64に丸める. |
static byte[] |
rounds(java.lang.String string)
対象文字列をASC64に丸める. |
| クラス java.lang.Object から継承されたメソッド |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| メソッドの詳細 |
|---|
public static final byte[] rounds(java.lang.String string)
throws java.lang.Exception
string - 対象文字列を設定します.
java.lang.Exception - 例外.
public static final byte[] rounds(byte[] binary)
throws InputException
binary - 対象バイナリを設定します.
InputException - 入力例外.
public static final int[] convertAsciiByAsc64(byte[] asc)
throws InputException
[0 - 9] : 半角数値. [a - z] : 半角英数小文字 [A - Z] : 半角英数大文字 [-] : 半角ハイフン. [+] : 半角プラス.
asc - 変換対象のASCIIコードを設定します.
InputException - 入力例外.
public static final java.lang.String convertAsc64ByAscii(int[] asc64)
throws InputException,
NotEqualInfoException
asc64 - 対象のASC64コードを設定します.
InputException - 入力例外.
NotEqualInfoException - 情報不一致例外.
public static final byte[] convertAsc64ByEnc(int[] asc64)
throws InputException
asc64 - 暗号化対象のASC64コードを設定します.
InputException - 入力例外.
public static final int[] convertEncByAsc64(byte[] enc)
throws InputException
enc - 対象の暗号化されたASC64コードを設定します.
InputException - 入力例外.public static final boolean isAsc64(java.lang.String string)
[0 - 9] : 半角数値. [a - z] : 半角英数小文字 [A - Z] : 半角英数大文字 [-] : 半角ハイフン. [+] : 半角プラス.
string - チェック対象の文字列を設定します.
|
|||||||||
| 前のクラス 次のクラス | フレームあり フレームなし | ||||||||
| 概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド | ||||||||