(t *testing.T)
| 458 | } |
| 459 | |
| 460 | func TestStandardDecryptFileNameBase32(t *testing.T) { |
| 461 | testStandardDecryptFileName(t, "base32", []EncodingTestCase{ |
| 462 | {"p0e52nreeaj0a5ea7s64m4j72s", "1"}, |
| 463 | {"p0e52nreeaj0a5ea7s64m4j72s/l42g6771hnv3an9cgc8cr2n1ng", "1/12"}, |
| 464 | {"p0e52nreeaj0a5ea7s64m4j72s/l42g6771hnv3an9cgc8cr2n1ng/qgm4avr35m5loi1th53ato71v0", "1/12/123"}, |
| 465 | }, true) |
| 466 | } |
| 467 | |
| 468 | func TestStandardDecryptFileNameBase64(t *testing.T) { |
| 469 | testStandardDecryptFileName(t, "base64", []EncodingTestCase{ |
nothing calls this directly
no test coverage detected
searching dependent graphs…