Return a hasher for a given size in bits of the resulting hash.
(bitsize)
| 121 | |
| 122 | |
| 123 | def get_hasher(bitsize): |
| 124 | """ |
| 125 | Return a hasher for a given size in bits of the resulting hash. |
| 126 | """ |
| 127 | return _hashmodules_by_bitsize[bitsize] |
| 128 | |
| 129 | |
| 130 | class sha1_git_hasher(Hashable): |
no outgoing calls