summaryrefslogtreecommitdiff
path: root/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml
diff options
context:
space:
mode:
Diffstat (limited to '.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml')
-rwxr-xr-x.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml79
1 files changed, 79 insertions, 0 deletions
diff --git a/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml b/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml
new file mode 100755
index 0000000000..b44422cafe
--- /dev/null
+++ b/.packages/microsoft.aspnetcore.app.ref/3.0.1/ref/netcoreapp3.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml
@@ -0,0 +1,79 @@
+<?xml version="1.0"?>
+<doc>
+ <assembly>
+ <name>Microsoft.AspNetCore.Cryptography.KeyDerivation</name>
+ </assembly>
+ <members>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivation">
+ <summary>
+ Provides algorithms for performing key derivation.
+ </summary>
+ </member>
+ <member name="M:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivation.Pbkdf2(System.String,System.Byte[],Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivationPrf,System.Int32,System.Int32)">
+ <summary>
+ Performs key derivation using the PBKDF2 algorithm.
+ </summary>
+ <param name="password">The password from which to derive the key.</param>
+ <param name="salt">The salt to be used during the key derivation process.</param>
+ <param name="prf">The pseudo-random function to be used in the key derivation process.</param>
+ <param name="iterationCount">The number of iterations of the pseudo-random function to apply
+ during the key derivation process.</param>
+ <param name="numBytesRequested">The desired length (in bytes) of the derived key.</param>
+ <returns>The derived key.</returns>
+ <remarks>
+ The PBKDF2 algorithm is specified in RFC 2898.
+ </remarks>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivationPrf">
+ <summary>
+ Specifies the PRF which should be used for the key derivation algorithm.
+ </summary>
+ </member>
+ <member name="F:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivationPrf.HMACSHA1">
+ <summary>
+ The HMAC algorithm (RFC 2104) using the SHA-1 hash function (FIPS 180-4).
+ </summary>
+ </member>
+ <member name="F:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivationPrf.HMACSHA256">
+ <summary>
+ The HMAC algorithm (RFC 2104) using the SHA-256 hash function (FIPS 180-4).
+ </summary>
+ </member>
+ <member name="F:Microsoft.AspNetCore.Cryptography.KeyDerivation.KeyDerivationPrf.HMACSHA512">
+ <summary>
+ The HMAC algorithm (RFC 2104) using the SHA-512 hash function (FIPS 180-4).
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.IPbkdf2Provider">
+ <summary>
+ Internal interface used for abstracting away the PBKDF2 implementation since the implementation is OS-specific.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.ManagedPbkdf2Provider">
+ <summary>
+ A PBKDF2 provider which utilizes the managed hash algorithm classes as PRFs.
+ This isn't the preferred provider since the implementation is slow, but it is provided as a fallback.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.NetCorePbkdf2Provider">
+ <summary>
+ Implements Pbkdf2 using <see cref="T:System.Security.Cryptography.Rfc2898DeriveBytes"/>.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.Pbkdf2Util">
+ <summary>
+ Internal base class used for abstracting away the PBKDF2 implementation since the implementation is OS-specific.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.Win7Pbkdf2Provider">
+ <summary>
+ A PBKDF2 provider which utilizes the Win7 API BCryptDeriveKeyPBKDF2.
+ </summary>
+ </member>
+ <member name="T:Microsoft.AspNetCore.Cryptography.KeyDerivation.PBKDF2.Win8Pbkdf2Provider">
+ <summary>
+ A PBKDF2 provider which utilizes the Win8 API BCryptKeyDerivation.
+ </summary>
+ </member>
+ </members>
+</doc>