Searched refs:getDecoder (Results 1 – 7 of 7) sorted by relevance
112 Decoder basicDecoder = Base64.getDecoder(); // uses Table 1 in testDecoder_extraChars_basic()297 checkDecoder_nonPrintableBytes_table1(Base64.getDecoder()); in testDecoder_nonPrintableBytes_basic()366 InputStream result = Base64.getDecoder().wrap(new ByteArrayInputStream(new byte[0])); in closedDecodeStream()380 Decoder decoder = Base64.getDecoder(); in testDecoder_decodeArrayToArray()417 Decoder decoder = Base64.getDecoder(); in testDecoder_decodeByteBuffer()459 Decoder decoder = Base64.getDecoder(); in testDecoder_decodeByteBuffer_invalidData()494 checkDecoder_nullArgs(Base64.getDecoder()); in testDecoder_nullArgs()714 checkRoundTrip_empty(Base64.getEncoder(), Base64.getDecoder()); in testRoundTrip_empty()739 checkRoundTrip_allBytes_singleLine(Base64.getEncoder(), Base64.getDecoder()); in testRoundTrip_allBytes_plain()775 checkRoundTrip_simple(Base64.getEncoder(), Base64.getDecoder()); in testRoundTrip_simple_basic()[all …]
265 Decoder decoder = Base64.getDecoder(); in decode()
397 byte[] bytes = Base64.getDecoder().decode(keys.getBytes()); in getKeyManagers()
535 byte[] bytes = Base64.getDecoder().decode(keys.getBytes()); in getKeyManagers()
593 byte[] bytes = Base64.getDecoder().decode(keys.getBytes()); in getKeyManagers()
609 byte[] bytes = Base64.getDecoder().decode(keys.getBytes()); in getKeyStore()
150 public static Decoder getDecoder() { in getDecoder() method in Base64