StoreKeyMethod enum
Represents the methods for deriving store keys supported by Askar.
This enum specifies the different key derivation methods that can be used to generate store keys.
Values
- raw → const StoreKeyMethod
- 
  Raw key method. const StoreKeyMethod('raw')
- none → const StoreKeyMethod
- 
  No key derivation method. const StoreKeyMethod('none')
- argon2IMod → const StoreKeyMethod
- 
  Argon2i key derivation method with moderate memory and CPU usage. const StoreKeyMethod('kdf:argon2i:mod')
- argon2IInt → const StoreKeyMethod
- 
  Argon2i key derivation method with intensive memory and CPU usage. const StoreKeyMethod('kdf:argon2i:int')
Properties
- hashCode → int
- 
  The hash code for this object.
  no setterinherited
- index → int
- 
  A numeric identifier for the enumerated value.
  no setterinherited
- name → String
- 
      Available on Enum, provided by the EnumName extension The name of the enum value.no setter
- runtimeType → Type
- 
  A representation of the runtime type of the object.
  no setterinherited
- value → String
- 
  The string value associated with the store key method.
  final
Methods
- 
  noSuchMethod(Invocation invocation) → dynamic 
- 
  Invoked when a nonexistent method or property is accessed.
  inherited
- 
  toString() → String 
- 
  A string representation of this object.
  inherited
Operators
- 
  operator ==(Object other) → bool 
- 
  The equality operator.
  inherited
Constants
- 
    values
  → const List<StoreKeyMethod> 
- A constant List of the values in this enum, in order of their declaration.