github.com/epfl-dcsl/gotee@v0.0.0-20200909122901-014b35f5e5e9/src/teecomm/types.go (about) 1 package teecomm 2 3 import ( 4 "crypto/rsa" 5 ) 6 7 type DecrRequestMsg struct { 8 Key *rsa.PrivateKey 9 Msg []byte 10 Opt *rsa.PKCS1v15DecryptOptions 11 Plaintxt []byte 12 Done chan bool 13 }