Searched refs:decodeBase64Byte (Results 1 – 2 of 2) sorted by relevance
53 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Byte((byte) '?')); in testCharEncoding()54 assertEquals(Base64Variant.BASE64_VALUE_INVALID, std.decodeBase64Byte((byte) 0xA0)); in testCharEncoding()60 assertEquals(0, std.decodeBase64Byte((byte) 'A')); in testCharEncoding()61 assertEquals(1, std.decodeBase64Byte((byte) 'B')); in testCharEncoding()62 assertEquals(2, std.decodeBase64Byte((byte)'C')); in testCharEncoding()
221 public int decodeBase64Byte(byte b) in decodeBase64Byte() method in Base64Variant