WithSectionEntropy indicates if entropy is calculated for available sections.
()
| 110 | |
| 111 | // WithSectionEntropy indicates if entropy is calculated for available sections. |
| 112 | func WithSectionEntropy() Option { |
| 113 | return func(o *opts) { |
| 114 | o.sectionEntropy = true |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | // WithSectionMD5 indicates if MD5 hash is calculated for available sections. |
| 119 | func WithSectionMD5() Option { |
no outgoing calls