github.com/hyperledger/aries-framework-go@v0.3.2/pkg/crypto/tinkcrypto/primitive/aead/aead.go (about)

     1  /*
     2  Copyright SecureKey Technologies Inc. All Rights Reserved.
     3  
     4  SPDX-License-Identifier: Apache-2.0
     5  */
     6  
     7  // Package aead provides implementations of the AEAD primitive.
     8  //
     9  // AEAD encryption assures the confidentiality and authenticity of the data. This primitive is CPA secure.
    10  package aead
    11  
    12  import (
    13  	// import to initialize.
    14  	_ "github.com/hyperledger/aries-framework-go/component/kmscrypto/crypto/tinkcrypto/primitive/aead"
    15  )