desとは? わかりやすく解説

DES クラス

すべての DES実装派生元となる DES (Data Encryption Standard) アルゴリズム基本クラス表します

名前空間: System.Security.Cryptography
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<ComVisibleAttribute(True)> _
Public MustInherit Class
 DES
    Inherits SymmetricAlgorithm
[ComVisibleAttribute(true)] 
public abstract class DES : SymmetricAlgorithm
[ComVisibleAttribute(true)] 
public ref class DES abstract : public
 SymmetricAlgorithm
/** @attribute ComVisibleAttribute(true) */ 
public abstract class DES extends SymmetricAlgorithm
ComVisibleAttribute(true) 
public abstract class DES extends
 SymmetricAlgorithm
解説解説
使用例使用例

指定したキー (Key) と初期化ベクタ (IV) で DESCryptoServiceProvider (DES実装) を使用してinName指定したファイル暗号化するメソッド次のコード例示します。このメソッドは、暗号化結果outName指定したファイル出力します

Private Shared Sub EncryptData(inName
 As String, outName As
 String, _
desKey() As Byte, desIV() As
 Byte)

    'Create the file streams to handle the input and output files.
    Dim fin As New FileStream(inName,
 FileMode.Open, FileAccess.Read)
    Dim fout As New FileStream(outName,
 FileMode.OpenOrCreate, _
       FileAccess.Write)
    fout.SetLength(0)
    
    'Create variables to help with read and write.
    Dim bin(4096) As Byte
 'This is intermediate storage for the encryption.
    Dim rdlen As Long =
 0 'This is the total number of bytes written.
    Dim totlen As Long =
 fin.Length 'Total length of the input file.
    Dim len As Integer 'This
 is the number of bytes to be written at a time.
    Dim des As New DESCryptoServiceProvider()
    Dim encStream As New
 CryptoStream(fout, _
       des.CreateEncryptor(desKey, desIV), CryptoStreamMode.Write)
    
    Console.WriteLine("Encrypting...")
    
    'Read from the input file, then encrypt and write to the output
 file.
    While rdlen < totlen
        len = fin.Read(bin, 0, 4096)
        encStream.Write(bin, 0, len)
        rdlen = Convert.ToInt32(rdlen + len / des.BlockSize * des.BlockSize)
        Console.WriteLine("Processed {0} bytes, {1} bytes total",
 len, _
           rdlen)
    End While
    
    encStream.Close()
End Sub
private static void EncryptData(String
 inName, String outName, byte[] desKey, byte[] desIV)
 {    
     //Create the file streams to handle the input and output files.
     FileStream fin = new FileStream(inName, FileMode.Open, FileAccess.Read);
     FileStream fout = new FileStream(outName, FileMode.OpenOrCreate,
 FileAccess.Write);
     fout.SetLength(0);
       
     //Create variables to help with read and write.
     byte[] bin = new byte[100]; //This is intermediate
 storage for the encryption.
     long rdlen = 0;              //This is the total number of bytes
 written.
     long totlen = fin.Length;    //This is the total length of the
 input file.
     int len;                     //This is the number
 of bytes to be written at a time.
 
     DES des = new DESCryptoServiceProvider();          
     CryptoStream encStream = new CryptoStream(fout, des.CreateEncryptor(desKey,
 desIV), CryptoStreamMode.Write);
                
     Console.WriteLine("Encrypting...");
 
     //Read from the input file, then encrypt and write to the output
 file.
     while(rdlen < totlen)
     {
         len = fin.Read(bin, 0, 100);
         encStream.Write(bin, 0, len);
         rdlen = rdlen + len;
         Console.WriteLine("{0} bytes processed", rdlen);
     }
 
     encStream.Close();  
     fout.Close();
     fin.Close();                   
 }
void EncryptData( String^ inName, String^ outName, array<Byte>^desKey,
 array<Byte>^desIV )
{
   
   //Create the file streams to handle the input and output files.
   FileStream^ fin = gcnew FileStream( inName,FileMode::Open,FileAccess::Read );
   FileStream^ fout = gcnew FileStream( outName,FileMode::OpenOrCreate,FileAccess::Write
 );
   fout->SetLength( 0 );
   
   //Create variables to help with read and write.
   array<Byte>^bin = gcnew array<Byte>(100);
   long rdlen = 0; //This is the total number of bytes written.

   long totlen = (long)fin->Length; //This is the total length of
 the input file.

   int len; //This is the number of bytes to be written
 at a time.

   DES^ des = gcnew DESCryptoServiceProvider;
   CryptoStream^ encStream = gcnew CryptoStream( fout,des->CreateEncryptor( desKey,
 desIV ),CryptoStreamMode::Write );
   Console::WriteLine( "Encrypting..." );
   
   //Read from the input file, then encrypt and write to the output
 file.
   while ( rdlen < totlen )
   {
      len = fin->Read( bin, 0, 100 );
      encStream->Write( bin, 0, len );
      rdlen = rdlen + len;
      Console::WriteLine( "{0} bytes processed", rdlen );
   }

   encStream->Close();
   fout->Close();
   fin->Close();
}

private static void EncryptData(String
 inName, 
    String outName, ubyte desKey[], ubyte desIV[])
{
    //Create the file streams to handle the input and output files.
    FileStream fin = new FileStream(inName, FileMode.Open, 
        FileAccess.Read);
    FileStream fout = new FileStream(outName, FileMode.OpenOrCreate,
 
        FileAccess.Write);

    fout.SetLength(0);

    // Create variables to help with read and write.        
    ubyte bin[] = new ubyte[100];  // This is intermediate
 
                                   // storage for the encryption.
    long rdlen = 0; // This is the total 
                    // number of bytes written.
    long totlen = fin.get_Length(); // This is the total 
                                    // length of the input file.   
     
    int len; //This is the number of bytes to be written
 at a time.

    DES des = new DESCryptoServiceProvider();
    CryptoStream encStream = new CryptoStream(fout, 
        des.CreateEncryptor(desKey, desIV), CryptoStreamMode.Write);

    Console.WriteLine("Encrypting...");

    //Read from the input file, then encrypt and write to the output
 file.
    while (rdlen < totlen) {
        len = fin.Read(bin, 0, 100);
        encStream.Write(bin, 0, len);
        rdlen = rdlen + len;
        Console.WriteLine("{0} bytes processed", 
            System.Convert.ToString(rdlen));
    }

    encStream.Close();
    fout.Close();
    fin.Close();
} //EncryptData

復号化も同じ方法で処理できます。ただし、その場合は CreateEncryptor の代わりに CreateDecryptor を使用します復号化では、ファイル暗号化使用したものと同じキー (Key) と初期化ベクタ (IV) を使用する必要があります

継承階層継承階層
System.Object
   System.Security.Cryptography.SymmetricAlgorithm
    System.Security.Cryptography.DES
       System.Security.Cryptography.DESCryptoServiceProvider
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

DES コンストラクタ

DES クラス新しインスタンス初期化します。

名前空間: System.Security.Cryptography
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

解説解説
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

DES フィールド


プロテクト フィールドプロテクト フィールド

  名前 説明
プロテクト フィールド BlockSizeValue  暗号操作ブロック サイズビット単位表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド FeedbackSizeValue  暗号操作フィードバック サイズビット単位表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド IVValue  対称アルゴリズム使用する初期化ベクタ (IV) を表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド KeySizeValue  対称アルゴリズム使用する共有キーサイズビット単位表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド KeyValue  対称アルゴリズム共有キー表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド LegalBlockSizesValue  対称アルゴリズムサポートされているブロック サイズ指定します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド LegalKeySizesValue  対称アルゴリズムサポートされているキー サイズ指定します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド ModeValue  対称アルゴリズム使用する暗号モード表します。 ( SymmetricAlgorithm から継承されます。)
プロテクト フィールド PaddingValue  対称アルゴリズム使用する埋め込みモード表します。 ( SymmetricAlgorithm から継承されます。)
参照参照

関連項目

DES クラス
System.Security.Cryptography 名前空間

その他の技術情報

暗号サービス

DES プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

DES クラス
System.Security.Cryptography 名前空間

その他の技術情報

暗号サービス

DES メソッド


パブリック メソッドパブリック メソッド

( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clear  SymmetricAlgorithm クラスによって使用されているすべてのリソース解放します。 ( SymmetricAlgorithm から継承されます。)
パブリック メソッド Create オーバーロードされます暗号オブジェクトインスタンス作成して、DES (Data Encryption Standard) アルゴリズム実行します
パブリック メソッド CreateDecryptor  オーバーロードされます対称復号化オブジェクト作成します。 ( SymmetricAlgorithm から継承されます。)
パブリック メソッド CreateEncryptor  オーバーロードされます対称暗号オブジェクト作成します。 ( SymmetricAlgorithm から継承されます。)
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 ( Object から継承されます。)
パブリック メソッド GenerateIV  派生クラスオーバーライドされると、アルゴリズム使用するランダムな初期化ベクタ (IV) を生成します。 ( SymmetricAlgorithm から継承されます。)
パブリック メソッド GenerateKey  派生クラスオーバーライドされると、アルゴリズム使用するランダム キー (Key) を生成します。 ( SymmetricAlgorithm から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 ( Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 ( Object から継承されます。)
パブリック メソッド IsSemiWeakKey 指定したキーが半脆弱かどうか確認します
パブリック メソッド IsWeakKey 指定したキー脆弱かどうか確認します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 ( Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 ( Object から継承されます。)
パブリック メソッド ValidKeySize  指定されキー サイズが、現在のアルゴリズムに対して有効かどうか判断します。 ( SymmetricAlgorithm から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DES クラス
System.Security.Cryptography 名前空間

その他の技術情報

暗号サービス

DES メンバ

すべての DES の実装派生元となる DES (Data Encryption Standard) アルゴリズム基本クラス表します

DES データ型公開されるメンバを以下の表に示します


プロテクト コンストラクタプロテクト コンストラクタ
プロテクト フィールドプロテクト フィールド
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
( プロテクト メソッド参照)
  名前 説明
パブリック メソッド Clear  SymmetricAlgorithm クラスによって使用されているすべてのリソース解放します。 (SymmetricAlgorithm から継承されます。)
パブリック メソッド Create オーバーロードされます暗号オブジェクトインスタンス作成してDES (Data Encryption Standard) アルゴリズム実行します
パブリック メソッド CreateDecryptor  オーバーロードされます対称復号化オブジェクト作成します。 (SymmetricAlgorithm から継承されます。)
パブリック メソッド CreateEncryptor  オーバーロードされます対称暗号オブジェクト作成します。 (SymmetricAlgorithm から継承されます。)
パブリック メソッド Equals  オーバーロードされます2 つObject インスタンス等しかどうか判断します。 (Object から継承されます。)
パブリック メソッド GenerateIV  派生クラスオーバーライドされると、アルゴリズム使用するランダムな初期化ベクタ (IV) を生成します。 (SymmetricAlgorithm から継承されます。)
パブリック メソッド GenerateKey  派生クラスオーバーライドされると、アルゴリズム使用するランダム キー (Key) を生成します。 (SymmetricAlgorithm から継承されます。)
パブリック メソッド GetHashCode  特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用適してます。 (Object から継承されます。)
パブリック メソッド GetType  現在のインスタンスType取得します。 (Object から継承されます。)
パブリック メソッド IsSemiWeakKey 指定したキーが半脆弱かどうか確認します
パブリック メソッド IsWeakKey 指定したキー脆弱かどうか確認します
パブリック メソッド ReferenceEquals  指定した複数Object インスタンス同一かどうか判断します。 (Object から継承されます。)
パブリック メソッド ToString  現在の Object を表す String返します。 (Object から継承されます。)
パブリック メソッド ValidKeySize  指定されキー サイズが、現在のアルゴリズムに対して有効かどうか判断します。 (SymmetricAlgorithm から継承されます。)
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

DES クラス
System.Security.Cryptography 名前空間

その他の技術情報

暗号サービス


このページでは「.NET Framework クラス ライブラリ リファレンス」からdesを検索した結果を表示しています。
Weblioに収録されているすべての辞書からdesを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からdes を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「des」の関連用語

desのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



desのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS