Search Results for

    Show / Hide Table of Contents

    Class Pbkdf2

    Inheritance
    System.Object
    Pbkdf2
    Namespace: Netmavryk.Utils
    Assembly: Netmavryk.dll
    Syntax
    public class Pbkdf2 : Stream

    Constructors

    | Improve this Doc View Source

    Pbkdf2(KeyedHashAlgorithm, Byte[], Int32)

    Declaration
    public Pbkdf2(KeyedHashAlgorithm hmacAlgorithm, byte[] salt, int iterations)
    Parameters
    Type Name Description
    KeyedHashAlgorithm hmacAlgorithm
    System.Byte[] salt
    System.Int32 iterations

    Properties

    | Improve this Doc View Source

    CanRead

    Declaration
    public override bool CanRead { get; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    CanSeek

    Declaration
    public override bool CanSeek { get; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    CanWrite

    Declaration
    public override bool CanWrite { get; }
    Property Value
    Type Description
    System.Boolean
    | Improve this Doc View Source

    Length

    Declaration
    public override long Length { get; }
    Property Value
    Type Description
    System.Int64
    | Improve this Doc View Source

    Position

    Declaration
    public override long Position { get; set; }
    Property Value
    Type Description
    System.Int64

    Methods

    | Improve this Doc View Source

    Close()

    Declaration
    public override void Close()
    | Improve this Doc View Source

    ComputeDerivedKey(KeyedHashAlgorithm, Byte[], Int32, Int32)

    Declaration
    public static byte[] ComputeDerivedKey(KeyedHashAlgorithm hmacAlgorithm, byte[] salt, int iterations, int derivedKeyLength)
    Parameters
    Type Name Description
    KeyedHashAlgorithm hmacAlgorithm
    System.Byte[] salt
    System.Int32 iterations
    System.Int32 derivedKeyLength
    Returns
    Type Description
    System.Byte[]
    | Improve this Doc View Source

    Flush()

    Declaration
    public override void Flush()
    | Improve this Doc View Source

    Read(Byte[], Int32, Int32)

    Declaration
    public override int Read(byte[] buffer, int offset, int count)
    Parameters
    Type Name Description
    System.Byte[] buffer
    System.Int32 offset
    System.Int32 count
    Returns
    Type Description
    System.Int32
    | Improve this Doc View Source

    Read(Int32)

    Declaration
    public byte[] Read(int count)
    Parameters
    Type Name Description
    System.Int32 count
    Returns
    Type Description
    System.Byte[]
    | Improve this Doc View Source

    Seek(Int64, SeekOrigin)

    Declaration
    public override long Seek(long offset, SeekOrigin origin)
    Parameters
    Type Name Description
    System.Int64 offset
    SeekOrigin origin
    Returns
    Type Description
    System.Int64
    | Improve this Doc View Source

    SetLength(Int64)

    Declaration
    public override void SetLength(long value)
    Parameters
    Type Name Description
    System.Int64 value
    | Improve this Doc View Source

    Write(Byte[], Int32, Int32)

    Declaration
    public override void Write(byte[] buffer, int offset, int count)
    Parameters
    Type Name Description
    System.Byte[] buffer
    System.Int32 offset
    System.Int32 count
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © Mavryk Dynamics