KeyedHashAlgorithm.Key プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > KeyedHashAlgorithm.Key プロパティの意味・解説 

KeyedHashAlgorithm.Key プロパティ

ハッシュ アルゴリズム使用するキー取得または設定します

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

例外例外
解説解説

このプロパティは、KeyValue フィールド公開アクセサです。

使用例使用例

Key プロパティオーバーライドして現在の KeyedHashAlgorithm オブジェクト使用されているキー取得する方法次のコード例示します。このコード例は、KeyedHashAlgorithm クラストピック取り上げているコード例一部分です。

Public Overrides Property
 Key() As Byte()
    Get
        Return CType(keyedCrypto.Key.Clone(), Byte())
    End Get
    Set(ByVal Value As Byte())
        keyedCrypto.Key = CType(Value.Clone(), Byte())
    End Set
End Property
public override byte[] Key
{
    get
    {
        return (byte[]) keyedCrypto.Key.Clone();
    }
    set
    {
        keyedCrypto.Key = (byte[]) value.Clone();
    }
}
/** @property 
 */
public ubyte[] get_Key()
{
    return (ubyte[])keyedCrypto.get_Key().Clone();
} //get_Key

/** @property 
 */
public void set_Key(ubyte value[])
{
    keyedCrypto.set_Key((ubyte[])(value.Clone()));
} //set_Key
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
KeyedHashAlgorithm クラス
KeyedHashAlgorithm メンバ
System.Security.Cryptography 名前空間
その他の技術情報
暗号サービス


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

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

辞書ショートカット

すべての辞書の索引

KeyedHashAlgorithm.Key プロパティのお隣キーワード
検索ランキング

   

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



KeyedHashAlgorithm.Key プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS