NoProtection returns implementation of StorageProtection that offers no protection.
()
| 42 | |
| 43 | // NoProtection returns implementation of StorageProtection that offers no protection. |
| 44 | func NoProtection() StorageProtection { |
| 45 | return nullStorageProtection{} |
| 46 | } |
| 47 | |
| 48 | type checksumProtection struct { |
| 49 | Secret []byte |
no outgoing calls