| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300 |
- <?xml version="1.0"?>
- <doc>
- <assembly>
- <name>SshNet.Security.Cryptography</name>
- </assembly>
- <members>
- <member name="T:System.Security.Cryptography.HashAlgorithm">
- <summary>
- Represents the base class from which all implementations of cryptographic
- hash algorithms must derive.
- </summary>
- </member>
- <member name="P:System.Security.Cryptography.HashAlgorithm.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:System.Security.Cryptography.HashAlgorithm.InputBlockSize">
- <summary>
- Gets the input block size.
- </summary>
- <returns>
- The input block size.
- </returns>
- </member>
- <member name="P:System.Security.Cryptography.HashAlgorithm.OutputBlockSize">
- <summary>
- Gets the output block size.
- </summary>
- <returns>
- The output block size.
- </returns>
- </member>
- <member name="P:System.Security.Cryptography.HashAlgorithm.CanReuseTransform">
- <summary>
- Gets a value indicating whether the current transform can be reused.
- </summary>
- <returns>
- Always true.
- </returns>
- </member>
- <member name="P:System.Security.Cryptography.HashAlgorithm.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:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[])">
- <summary>
- Computes the hash value for the specified byte array.
- </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:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.Byte[],System.Int32,System.Int32)">
- <summary>
- Computes the hash value for the specified region of the specified byte array.
- </summary>
- <param name="buffer">The input to compute the hash code for.</param>
- <param name="offset">The offset into the byte array from which to begin using data.</param>
- <param name="count">The number of bytes in the array to use as data.</param>
- <returns>
- The computed hash code.
- </returns>
- <exception cref="T:System.ArgumentException">
- <para><paramref name="count"/> is an invalid value.</para>
- <para>-or-</para>
- <para><paramref name="buffer"/> length is invalid.</para>
- </exception>
- <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="offset"/> is out of range. This parameter requires a non-negative number.</exception>
- <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:System.Security.Cryptography.HashAlgorithm.ComputeHash(System.IO.Stream)">
- <summary>
- Computes the hash value for the specified <see cref="T:System.IO.Stream"/> object.
- </summary>
- <param name="inputStream">The input to compute the hash code for.</param>
- <returns>
- The computed hash code.
- </returns>
- <exception cref="T:System.ObjectDisposedException">The object has already been disposed.</exception>
- </member>
- <member name="M:System.Security.Cryptography.HashAlgorithm.Dispose">
- <summary>
- Releases all resources used by the current instance of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="M:System.Security.Cryptography.HashAlgorithm.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> 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="M:System.Security.Cryptography.HashAlgorithm.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:System.Security.Cryptography.HashAlgorithm.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:System.Security.Cryptography.HashAlgorithm.Initialize">
- <summary>
- Initializes an implementation of the <see cref="T:System.Security.Cryptography.HashAlgorithm"/> class.
- </summary>
- </member>
- <member name="T:System.Security.Cryptography.KeyedHashAlgorithm">
- <summary>
- Represents the abstract class from which all implementations of keyed
- hash algorithms must derive.
- </summary>
- </member>
- <member name="P:System.Security.Cryptography.KeyedHashAlgorithm.Key">
- <summary>
- Gets or sets the key to use in the hash algorithm.
- </summary>
- <value>
- The key to use in the hash algorithm.
- </value>
- </member>
- <member name="M:System.Security.Cryptography.KeyedHashAlgorithm.Dispose(System.Boolean)">
- <summary>
- Releases the unmanaged resources used by the <see cref="T:System.Security.Cryptography.KeyedHashAlgorithm"/> 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.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="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="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="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="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="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="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>
|