Deserialization - CI/CD用語集の定義
デシリアライゼーション はシリアライゼーションの逆で、受信したバイト列(JSON文字列やprotobufメッセージ)を、プログラムが使えるメモリ上のオブジェクトへ戻すことです。
なぜ重要か
信頼できない入力の安全でないデシリアライゼーションは既知のセキュリティリスクであるため、CIのセキュリティスキャンはこれをフラグします。テストでのデシリアライゼーションエラーは、通常、producerとconsumerの間のschemaのずれを意味します。
関連ガイド
Serialization Format - CI/CD Glossary DefinitionSerialization Format: A serialization format is the encoding used to turn in-memory data into bytes for stora…
JSON Schema - CI/CD Glossary DefinitionJSON Schema: JSON Schema is a vocabulary for validating the structure of JSON: it declares required fields, t…
Protocol Buffers - CI/CD Glossary DefinitionProtocol Buffers: Protocol Buffers (protobuf) are a compact, binary serialization format defined in `.proto`…