| 38 | ) |
| 39 | |
| 40 | type _Cipher struct { |
| 41 | key_size int |
| 42 | source string |
| 43 | cipher_properties *crypto_proto.CipherProperties |
| 44 | cipher_metadata *crypto_proto.CipherMetadata |
| 45 | encrypted_cipher []byte |
| 46 | encrypted_cipher_metadata []byte |
| 47 | authenticated bool |
| 48 | } |
| 49 | |
| 50 | func (self *_Cipher) Size() int { |
| 51 | return 1 |
nothing calls this directly
no outgoing calls
no test coverage detected