struct
Matter::Session::Pase::Definitions::PbkdfParamResponse
- Matter::Session::Pase::Definitions::PbkdfParamResponse
- Struct
- Value
- Object
Overview
PBKDF Parameter Response message Sent by device in response to PbkdfParamRequest
Included Modules
- TLV::Serializable
Defined in:
matter/session/pase/definitions.crConstructors
- .new(iterations : UInt32, salt : Bytes, responder_session_id : UInt16 | Nil = nil)
- .new(data : Slice(UInt8))
Instance Method Summary
-
#iterations : UInt32
PBKDF iterations count
-
#iterations=(iterations : UInt32)
PBKDF iterations count
-
#responder_session_id : UInt16 | Nil
Responder session ID (optional)
-
#responder_session_id=(responder_session_id : UInt16 | Nil)
Responder session ID (optional)
-
#salt : Bytes
PBKDF salt
-
#salt=(salt : Bytes)
PBKDF salt
-
#to_bytes : Bytes
Encode to TLV bytes
Constructor Detail
def self.new(iterations : UInt32, salt : Bytes, responder_session_id : UInt16 | Nil = nil)
#