Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MZXW6 (0.09 sec)

  1. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        testStreamingEncodingWithCasing(base32(), "foo", "MZXW6===");
        testStreamingEncodingWithCasing(base32(), "foob", "MZXW6YQ=");
        testStreamingEncodingWithCasing(base32(), "fooba", "MZXW6YTB");
        testStreamingEncodingWithCasing(base32(), "foobar", "MZXW6YTBOI======");
      }
    
      public void testBase32LenientPadding() {
        testDecodes(base32(), "MZXW6", "foo");
        testDecodes(base32(), "MZXW6=", "foo");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 06 12:56:11 UTC 2023
    - 24.6K bytes
    - Viewed (0)
  2. src/encoding/base32/base32_test.go

    			{"MZXW6YT", "BZZ"},
    			{"MZXW6Y", "TBZZ"},
    			{"MZXW6Y", "TB", "ZZ"},
    			{"MZXW6", "YTBZZ"},
    			{"MZXW6", "YTB", "ZZ"},
    			{"MZXW6", "YT", "BZZ"},
    		}, io.ErrUnexpectedEOF},
    
    		// Normal case, this is valid input
    		{"fooba", [][]string{
    			{"MZXW6YTB"},
    			{"MZXW6YT", "B"},
    			{"MZXW6Y", "TB"},
    			{"MZXW6", "YTB"},
    			{"MZXW6", "YT", "B"},
    			{"MZXW", "6YTB"},
    			{"MZXW", "6Y", "TB"},
    		}, nil},
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/BaseEncoding.java

     *
     * <pre>{@code
     * BaseEncoding.base32().encode("foo".getBytes(Charsets.US_ASCII))
     * }</pre>
     *
     * <p>returns the string {@code "MZXW6==="}, and
     *
     * <pre>{@code
     * byte[] decoded = BaseEncoding.base32().decode("MZXW6===");
     * }</pre>
     *
     * <p>...returns the ASCII bytes of the string {@code "foo"}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/BaseEncoding.java

     *
     * <pre>{@code
     * BaseEncoding.base32().encode("foo".getBytes(Charsets.US_ASCII))
     * }</pre>
     *
     * <p>returns the string {@code "MZXW6==="}, and
     *
     * <pre>{@code
     * byte[] decoded = BaseEncoding.base32().decode("MZXW6===");
     * }</pre>
     *
     * <p>...returns the ASCII bytes of the string {@code "foo"}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 15 16:33:32 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top