caseInsensitiveBase32Encoding defines a file name encoding using a modified version of standard base32 as described in RFC4648 The standard encoding is modified in two ways - it becomes lower case (no-one likes upper case filenames!) - we strip the padding character `=`
| 131 | // - it becomes lower case (no-one likes upper case filenames!) |
| 132 | // - we strip the padding character `=` |
| 133 | type caseInsensitiveBase32Encoding struct{} |
| 134 | |
| 135 | // EncodeToString encodes a string using the modified version of |
| 136 | // base32 encoding. |
nothing calls this directly
no outgoing calls
no test coverage detected