| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>SshNet.Security.Cryptography</name>
- </assembly>
- <members>
- <member name="P:SshNet.Security.Cryptography.HashProviderBase.Hash">
- <summary>
- Gets the value of the computed hash code.
- </summary>
- <value>
- The current value of the computed hash code.
- </value>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
- <summary>
- Computes the hash value for the specified region of the input byte array and copies the specified
- region of the input byte array to the specified region of the output byte array.
- </summary>
- <param name="inputBuffer">The input to compute the hash code for.</param>
- <param name="inputOffset">The offset into the input byte array from which to begin using data.</param>
- <param name="inputCount">The number of bytes in the input byte array to use as data.</param>
- <param name="outputBuffer">A copy of the part of the input array used to compute the hash code.</param>
- <param name="outputOffset">The offset into the output byte array from which to begin writing data.</param>
- <returns>
- The number of bytes written.
- </returns>
- <exception cref="T:System.ArgumentException">
- <para><paramref name="inputCount"/> uses an invalid value.</para>
- <para>-or-</para>
- <para><paramref name="inputBuffer"/> has an invalid length.</para>
- </exception>
- <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset"/> is out of range. This parameter requires a non-negative number.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Computes the hash value for the specified region of the specified byte array.
- </summary>
- <param name="inputBuffer">The input to compute the hash code for.</param>
- <param name="inputOffset">The offset into the byte array from which to begin using data.</param>
- <param name="inputCount">The number of bytes in the byte array to use as data.</param>
- <returns>
- An array that is a copy of the part of the input that is hashed.
- </returns>
- <exception cref="T:System.ArgumentException">
- <para><paramref name="inputCount"/> uses an invalid value.</para>
- <para>-or-</para>
- <para><paramref name="inputBuffer"/> has an invalid length.</para>
- </exception>
- <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset"/> is out of range. This parameter requires a non-negative number.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.ComputeHash(System.Byte[])">
- <summary>
- Computes the hash value for the input data.
- </summary>
- <param name="buffer">The input to compute the hash code for.</param>
- <returns>
- The computed hash code.
- </returns>
- <exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.Dispose">
- <summary>
- Releases all resources used by the current instance of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HashProviderBase.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.HashProviderBase.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.HashProviderBase.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/>.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HashProviderBase.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMAC">
- <summary>
- Provides HMAC algorithm implementation.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMAC.BlockSize">
- <summary>
- Gets the size of the block.
- </summary>
- <value>
- The size of the block.
- </value>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMAC.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <value>
- The size, in bits, of the computed hash code.
- </value>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.#ctor(SshNet.Security.Cryptography.IHashProvider)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMAC"/> with the specified hash algorithm.
- </summary>
- <param name="hashProvider">The hash provider.</param>
- <exception cref="T:System.ArgumentNullException"><paramref name="hashProvider"/> is <c>null</c>.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.#ctor(SshNet.Security.Cryptography.IHashProvider,System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMAC"/> with the specified hash algorithm, key and size of the computed
- hash code.
- </summary>
- <param name="hashProvider">The hash provider.</param>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- <exception cref="T:System.ArgumentNullException"><paramref name="hashProvider"/> is <c>null</c>.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.#ctor(SshNet.Security.Cryptography.IHashProvider,System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMAC"/> with the specified hash algorithm and key.
- </summary>
- <param name="hashProvider">The hash provider.</param>
- <param name="key">The key.</param>
- <exception cref="T:System.ArgumentNullException"><paramref name="hashProvider"/> is <c>null</c>.</exception>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMAC.Key">
- <summary>
- Gets or sets the key to use in the hash algorithm.
- </summary>
- <returns>
- The key to use in the hash algorithm.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm" /> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Hashes the core.
- </summary>
- <param name="rgb">The RGB.</param>
- <param name="ib">The ib.</param>
- <param name="cb">The cb.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.Dispose(System.Boolean)">
- <summary>
- Releases unmanaged and - optionally - managed resources
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged ResourceMessages.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMAC.GetShortenedKey(System.Byte[])">
- <summary>
- Return a key that fits the <see cref="P:SshNet.Security.Cryptography.HMAC.BlockSize"/> of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/>.
- </summary>
- <param name="key">The key to shorten, if necessary.</param>
- <returns>
- A hash of <paramref name="key"/> if <paramref name="key"/> is longer than the <see cref="P:SshNet.Security.Cryptography.HMAC.BlockSize"/> of the
- <see cref="T:System.Security.Cryptography.HashAlgorithm"/>; otherwise, <paramref name="key"/>.
- </returns>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACMD5">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the MD5 hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACMD5.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACMD5"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACMD5.#ctor(System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACMD5"/> with the specified key and size of the computed hash code.
- </summary>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACMD5.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACMD5"/> this is 64 bytes.
- </value>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACRIPEMD160">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:SshNet.Security.Cryptography.RIPEMD160"/> hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACRIPEMD160.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACRIPEMD160"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACRIPEMD160.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACRIPEMD160"/> this is 64 bytes.
- </value>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACSHA1">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:SshNet.Security.Cryptography.SHA1"/> hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA1.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA1"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA1.#ctor(System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA1"/> with the specified key and size of the computed hash code.
- </summary>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACSHA1.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACSHA1"/> this is 64 bytes.
- </value>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACSHA256">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:SshNet.Security.Cryptography.HMACSHA256"/> hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA256.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA256"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA256.#ctor(System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA256"/> with the specified key and size of the computed hash code.
- </summary>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACSHA256.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACSHA256"/> this is 64 bytes.
- </value>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACSHA384">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:SshNet.Security.Cryptography.HMACSHA384"/> hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA384.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA384"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA384.#ctor(System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA384"/> with the specified key and size of the computed hash code.
- </summary>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACSHA384.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACSHA384"/> this is 128 bytes.
- </value>
- </member>
- <member name="T:SshNet.Security.Cryptography.HMACSHA512">
- <summary>
- Computes a Hash-based Message Authentication Code (HMAC) by using the <see cref="T:SshNet.Security.Cryptography.HMACSHA512"/> hash function.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA512.#ctor(System.Byte[])">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA512"/> with the specified key.
- </summary>
- <param name="key">The key.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.HMACSHA512.#ctor(System.Byte[],System.Int32)">
- <summary>
- Initializes a <see cref="T:SshNet.Security.Cryptography.HMACSHA512"/> with the specified key and size of the computed hash code.
- </summary>
- <param name="key">The key.</param>
- <param name="hashSize">The size, in bits, of the computed hash code.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.HMACSHA512.BlockSize">
- <summary>
- Gets or sets the block size, in bytes, to use in the hash value.
- </summary>
- <value>
- The block size to use in the hash value. For <see cref="T:SshNet.Security.Cryptography.HMACSHA512"/> this is 128 bytes.
- </value>
- </member>
- <member name="P:SshNet.Security.Cryptography.IHashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.IHashProvider.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.IHashProvider.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.IHashProvider.Hash">
- <summary>
- Gets the value of the computed hash code.
- </summary>
- <value>
- The current value of the computed hash code.
- </value>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.IHashProvider"/>.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)">
- <summary>
- Computes the hash value for the specified region of the input byte array and copies the specified
- region of the input byte array to the specified region of the output byte array.
- </summary>
- <param name="inputBuffer">The input to compute the hash code for.</param>
- <param name="inputOffset">The offset into the input byte array from which to begin using data.</param>
- <param name="inputCount">The number of bytes in the input byte array to use as data.</param>
- <param name="outputBuffer">A copy of the part of the input array used to compute the hash code.</param>
- <param name="outputOffset">The offset into the output byte array from which to begin writing data.</param>
- <returns>
- The number of bytes written.
- </returns>
- <exception cref="T:System.ArgumentException">
- <para><paramref name="inputCount"/> uses an invalid value.</para>
- <para>-or-</para>
- <para><paramref name="inputBuffer"/> has an invalid length.</para>
- </exception>
- <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset"/> is out of range. This parameter requires a non-negative number.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.TransformFinalBlock(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Computes the hash value for the specified region of the specified byte array.
- </summary>
- <param name="inputBuffer">The input to compute the hash code for.</param>
- <param name="inputOffset">The offset into the byte array from which to begin using data.</param>
- <param name="inputCount">The number of bytes in the byte array to use as data.</param>
- <returns>
- An array that is a copy of the part of the input that is hashed.
- </returns>
- <exception cref="T:System.ArgumentException">
- <para><paramref name="inputCount"/> uses an invalid value.</para>
- <para>-or-</para>
- <para><paramref name="inputBuffer"/> has an invalid length.</para>
- </exception>
- <exception cref="T:System.ArgumentNullException"><paramref name="inputBuffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="inputOffset"/> is out of range. This parameter requires a non-negative number.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:SshNet.Security.Cryptography.IHashProvider.ComputeHash(System.Byte[])">
- <summary>
- Computes the hash value for the input data.
- </summary>
- <param name="buffer">The input to compute the hash code for.</param>
- <returns>
- The computed hash code.
- </returns>
- <exception cref="T:System.ArgumentNullException"><paramref name="buffer"/> is <c>null</c>.</exception>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="T:SshNet.Security.Cryptography.MD5">
- <summary>
- MD5 algorithm implementation
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.MD5"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.MD5"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="F:SshNet.Security.Cryptography.MD5HashProvider._x">
- <summary>
- The word buffer.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5HashProvider.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.MD5HashProvider"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5HashProvider.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.MD5HashProvider.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5HashProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.MD5HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="T:SshNet.Security.Cryptography.RIPEMD160">
- <summary>
- Cryptographic hash function based upon the Merkle–Damgård construction.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.RIPEMD160"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.RIPEMD160"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="F:SshNet.Security.Cryptography.RIPEMD160HashProvider.X">
- <summary>
- The word buffer.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.RIPEMD160HashProvider" /> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160HashProvider.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.RIPEMD160HashProvider.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.InternalInitialize">
- <summary>
- Reset the chaining variables to the IV values.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.F1(System.Int32,System.Int32,System.Int32)">
- <summary>
- Rounds 0-15
- </summary>
- <param name="x">The x.</param>
- <param name="y">The y.</param>
- <param name="z">The z.</param>
- <returns></returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.F2(System.Int32,System.Int32,System.Int32)">
- <summary>
- Rounds 16-31
- </summary>
- <param name="x">The x.</param>
- <param name="y">The y.</param>
- <param name="z">The z.</param>
- <returns></returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.F3(System.Int32,System.Int32,System.Int32)">
- <summary>
- ounds 32-47
- </summary>
- <param name="x">The x.</param>
- <param name="y">The y.</param>
- <param name="z">The z.</param>
- <returns></returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.F4(System.Int32,System.Int32,System.Int32)">
- <summary>
- Rounds 48-63
- </summary>
- <param name="x">The x.</param>
- <param name="y">The y.</param>
- <param name="z">The z.</param>
- <returns></returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.RIPEMD160HashProvider.F5(System.Int32,System.Int32,System.Int32)">
- <summary>
- ounds 64-79
- </summary>
- <param name="x">The x.</param>
- <param name="y">The y.</param>
- <param name="z">The z.</param>
- <returns></returns>
- </member>
- <member name="T:SshNet.Security.Cryptography.SHA1">
- <summary>
- Computes the SHA1 hash for input data.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA1"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.SHA1"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA1HashProvider._x">
- <summary>
- The word buffer.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1HashProvider.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA1"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>The size, in bits, of the computed hash code.</returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1HashProvider.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA1HashProvider.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1HashProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA1HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="T:SshNet.Security.Cryptography.SHA256">
- <summary>
- Computes the SHA256 hash for input data.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA256"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.SHA256"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA256HashProvider._x">
- <summary>
- The word buffer.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256HashProvider.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA256HashProvider"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256HashProvider.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA256HashProvider.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256HashProvider.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA256HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA256HashProvider.K">
- <summary>
- The SHA-256 Constants (represent the first 32 bits of the fractional parts of the cube roots of the first sixty-four prime numbers)
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H1">
- <summary>
- Initial hash value 1.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H2">
- <summary>
- Initial hash value 2.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H3">
- <summary>
- Initial hash value 3.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H4">
- <summary>
- Initial hash value 4.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H5">
- <summary>
- Initial hash value 5.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H6">
- <summary>
- Initial hash value 6.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H7">
- <summary>
- Initial hash value 7.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase.H8">
- <summary>
- Initial hash value 8.
- </summary>
- </member>
- <member name="F:SshNet.Security.Cryptography.SHA2HashProviderBase._x">
- <summary>
- The word buffer.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA2HashProviderBase.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA2HashProviderBase" /> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA2HashProviderBase.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA2HashProviderBase.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA2HashProviderBase.Finish">
- <summary>
- Finalizes the hash computation.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA2HashProviderBase.AdjustByteCounts">
- <summary>
- Adjust the byte counts so that byteCount2 represents the upper long (less 3 bits) word of the byte count.
- </summary>
- </member>
- <member name="T:SshNet.Security.Cryptography.SHA384">
- <summary>
- Computes the SHA384 hash for input data.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA384"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.SHA384"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384HashProvider.InputBlockSize">
- <summary>
- When overridden in a derived class, gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA384HashProvider.OutputBlockSize">
- <summary>
- When overridden in a derived class, gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA384HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- <member name="T:SshNet.Security.Cryptography.SHA512">
- <summary>
- Computes the SHA512 hash for input data.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512.#ctor">
- <summary>
- Initializes a new instance of the <see cref="T:SshNet.Security.Cryptography.SHA512"/> class.
- </summary>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512.CanTransformMultipleBlocks">
- <summary>
- Gets a value indicating whether multiple blocks can be transformed.
- </summary>
- <returns>
- true if multiple blocks can be transformed; otherwise, false.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512.HashCore(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Routes data written to the object into the hash algorithm for computing the hash.
- </summary>
- <param name="array">The input to compute the hash code for.</param>
- <param name="ibStart">The offset into the byte array from which to begin using data.</param>
- <param name="cbSize">The number of bytes in the byte array to use as data.</param>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:SshNet.Security.Cryptography.SHA512"/> and optionally releases the managed resources.
- </summary>
- <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512HashProvider.HashSize">
- <summary>
- Gets the size, in bits, of the computed hash code.
- </summary>
- <returns>
- The size, in bits, of the computed hash code.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512HashProvider.InputBlockSize">
- <summary>
- When overridden in a derived class, gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:SshNet.Security.Cryptography.SHA512HashProvider.OutputBlockSize">
- <summary>
- When overridden in a derived class, gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512HashProvider.HashFinal">
- <summary>
- Finalizes the hash computation after the last data is processed by the cryptographic stream object.
- </summary>
- <returns>
- The computed hash code.
- </returns>
- </member>
- <member name="M:SshNet.Security.Cryptography.SHA512HashProvider.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:SshNet.Security.Cryptography.HashProviderBase"/> class.
- </summary>
- </member>
- </members>
- </doc>
|