Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for printText (0.09 sec)

  1. internal/kms/conn.go

    // plaintext data and can be stored on untrusted
    // storage.
    type DEK struct {
    	KeyID      string // Name of the master key
    	Version    int    // Version of the master key (MinKMS only)
    	Plaintext  []byte // Paintext of the data encryption key
    	Ciphertext []byte // Ciphertext of the data encryption key
    }
    
    var (
    	_ encoding.TextMarshaler   = (*DEK)(nil)
    	_ encoding.TextUnmarshaler = (*DEK)(nil)
    )
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sun Aug 18 06:43:03 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top