Searched defs:Hex (Results 1 - 4 of 4) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/
H A DHex.java7 public class Hex class
12 * encode the input data producing a Hex encoded byte array.
14 * @return a byte array containing the Hex encoded data.
23 * encode the input data producing a Hex encoded byte array.
25 * @return a byte array containing the Hex encoded data.
40 throw new RuntimeException("exception encoding Hex string: " + e);
47 * Hex encode the byte data writing it to the given output stream.
60 * Hex encode the byte data writing it to the given output stream.
75 * decode the Hex encoded input data. It is assumed the input data is valid.
90 throw new RuntimeException("exception decoding Hex strin
[all...]
/external/apache-http/src/org/apache/commons/codec/binary/
H A DHex.java25 * Hex encoder and decoder.
29 * @version $Id: Hex.java,v 1.13 2004/04/18 18:22:33 ggregory Exp $
31 public class Hex implements BinaryEncoder, BinaryDecoder { class in inherits:BinaryEncoder,BinaryDecoder
34 * Used building output as Hex
98 * a byte[] to convert to Hex characters
163 * @param array a byte[] to convert to Hex characters
177 * @param object a String, or byte[] to convert to Hex characters
/external/openssl/crypto/bn/
H A Dbn_print.c65 static const char Hex[]="0123456789ABCDEF"; variable
91 *(p++)=Hex[v>>4];
92 *(p++)=Hex[v&0x0f];
349 if (BIO_write(bp,&(Hex[v]),1) != 1)
/external/webkit/WebCore/html/
H A DPreloadScanner.cpp186 Hex, enumerator in enum:WebCore::EntityState
233 entityState = Hex;
235 case Hex:

Completed in 96 milliseconds