HomeSort by relevance Sort by last modified time
    Searched defs:base32 (Results 1 - 25 of 66) sorted by null

1 2 3

  /prebuilts/go/darwin-x86/src/encoding/base32/
base32_test.go 5 package base32 package
29 // Wikipedia examples, converted to base32
base32.go 5 // Package base32 implements base32 encoding as specified by RFC 4648.
6 package base32 package
20 // 32-character alphabet. The most common is the "base32" encoding
45 // StdEncoding is the standard base32 encoding, as defined in
104 // Encode 5-bit blocks using the base32 alphabet
135 // EncodeToString returns the base32 encoding of src.
211 // NewEncoder returns a new base32 stream encoder. Data written to
213 // Base32 encodings operate in 5-byte blocks; when finished
220 // EncodedLen returns the length in bytes of the base32 encodin
    [all...]
  /prebuilts/go/linux-x86/src/encoding/base32/
base32_test.go 5 package base32 package
29 // Wikipedia examples, converted to base32
base32.go 5 // Package base32 implements base32 encoding as specified by RFC 4648.
6 package base32 package
20 // 32-character alphabet. The most common is the "base32" encoding
45 // StdEncoding is the standard base32 encoding, as defined in
104 // Encode 5-bit blocks using the base32 alphabet
135 // EncodeToString returns the base32 encoding of src.
211 // NewEncoder returns a new base32 stream encoder. Data written to
213 // Base32 encodings operate in 5-byte blocks; when finished
220 // EncodedLen returns the length in bytes of the base32 encodin
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/io/super/com/google/common/io/
BaseEncodingTest.java 18 import static com.google.common.io.BaseEncoding.base32;
50 testEncodes(base32().withSeparator("*", 4), "foobar", "MZXW*6YTB*OI==*====");
148 testEncodingWithCasing(base32(), "", ""); method
149 testEncodingWithCasing(base32(), "f", "MY======"); method
150 testEncodingWithCasing(base32(), "fo", "MZXQ===="); method
151 testEncodingWithCasing(base32(), "foo", "MZXW6==="); method
152 testEncodingWithCasing(base32(), "foob", "MZXW6YQ="); method
153 testEncodingWithCasing(base32(), "fooba", "MZXW6YTB"); method
154 testEncodingWithCasing(base32(), "foobar", "MZXW6YTBOI======"); method
158 testDecodes(base32(), "MZXW6", "foo") method
159 testDecodes(base32(), "MZXW6=", "foo"); method
160 testDecodes(base32(), "MZXW6==", "foo"); method
161 testDecodes(base32(), "MZXW6===", "foo"); \/\/ proper padding length method
162 testDecodes(base32(), "MZXW6====", "foo"); method
163 testDecodes(base32(), "MZXW6=====", "foo"); method
179 assertFailsToDecode(base32(), "\\u007f"); method
180 assertFailsToDecode(base32(), "Wf2!"); method
182 assertFailsToDecode(base32(), "let's not talk of love or chains!"); method
184 assertFailsToDecode(base32(), "A"); method
185 assertFailsToDecode(base32(), "ABC"); method
186 assertFailsToDecode(base32(), "ABCDEF"); method
190 assertSame(base32(), base32().upperCase()); method
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
BaseEncodingTest.java 18 import static com.google.common.io.BaseEncoding.base32;
56 testEncodes(base32().withSeparator("*", 4), "foobar", "MZXW*6YTB*OI==*====");
190 testEncodingWithCasing(base32(), "", ""); method
191 testEncodingWithCasing(base32(), "f", "MY======"); method
192 testEncodingWithCasing(base32(), "fo", "MZXQ===="); method
193 testEncodingWithCasing(base32(), "foo", "MZXW6==="); method
194 testEncodingWithCasing(base32(), "foob", "MZXW6YQ="); method
195 testEncodingWithCasing(base32(), "fooba", "MZXW6YTB"); method
196 testEncodingWithCasing(base32(), "foobar", "MZXW6YTBOI======"); method
202 testStreamingEncodingWithCasing(base32(), "", ""); method
203 testStreamingEncodingWithCasing(base32(), "f", "MY======"); method
204 testStreamingEncodingWithCasing(base32(), "fo", "MZXQ===="); method
205 testStreamingEncodingWithCasing(base32(), "foo", "MZXW6==="); method
206 testStreamingEncodingWithCasing(base32(), "foob", "MZXW6YQ="); method
207 testStreamingEncodingWithCasing(base32(), "fooba", "MZXW6YTB"); method
208 testStreamingEncodingWithCasing(base32(), "foobar", "MZXW6YTBOI======"); method
212 testDecodes(base32(), "MZXW6", "foo"); method
213 testDecodes(base32(), "MZXW6=", "foo"); method
214 testDecodes(base32(), "MZXW6==", "foo"); method
215 testDecodes(base32(), "MZXW6===", "foo"); \/\/ proper padding length method
216 testDecodes(base32(), "MZXW6====", "foo"); method
217 testDecodes(base32(), "MZXW6=====", "foo"); method
233 assertFailsToDecode(base32(), "\\u007f"); method
234 assertFailsToDecode(base32(), "Wf2!"); method
236 assertFailsToDecode(base32(), "let's not talk of love or chains!"); method
238 assertFailsToDecode(base32(), "A"); method
239 assertFailsToDecode(base32(), "ABC"); method
240 assertFailsToDecode(base32(), "ABCDEF"); method
244 assertSame(base32(), base32().upperCase()); method
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/io/super/com/google/common/io/
BaseEncoding.java 50 * BaseEncoding.base32().encode("foo".getBytes(Charsets.US_ASCII))}</pre>
53 * byte[] decoded = BaseEncoding.base32().decode("MZXW6===");}</pre>
92 * <td>{@link #base32()}
329 private static final BaseEncoding BASE32 =
330 new StandardBaseEncoding("base32()", "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567", '=');
333 * The "base32" encoding specified by <a
345 public static BaseEncoding base32() { method in class:BaseEncoding
346 return BASE32;
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /prebuilts/devtools/tools/lib/
guava-17.0.jar 
guava-18.0.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0/
compiler-2.1.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta1/
compiler-2.1.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-beta3/
compiler-2.1.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-rc1/
compiler-2.1.0-rc1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.2/
compiler-2.1.2.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.3/
compiler-2.1.3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0/
compiler-2.2.0.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha1/
compiler-2.2.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha3/
compiler-2.2.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha4/
compiler-2.2.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha7/
compiler-2.2.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-beta1/
compiler-2.2.0-beta1.jar 

Completed in 85 milliseconds

1 2 3