github.com/hyperledger/aries-framework-go@v0.3.2/pkg/didcomm/common/model/envelope.go (about)

     1  /*
     2  Copyright SecureKey Technologies Inc. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  package model
     8  
     9  // Envelope for the DIDComm transport messages.
    10  type Envelope struct {
    11  	Protected  string `json:"protected,omitempty"`
    12  	IV         string `json:"iv,omitempty"`
    13  	CipherText string `json:"ciphertext,omitempty"`
    14  	Tag        string `json:"tag,omitempty"`
    15  }