Class Base16InputStream

    • Constructor Detail

      • Base16InputStream

        public Base16InputStream​(java.io.InputStream inputStream)
        Constructs a Base16InputStream such that all data read is Base16-decoded from the original provided InputStream.
        Parameters:
        inputStream - InputStream to wrap.
      • Base16InputStream

        @Deprecated
        public Base16InputStream​(java.io.InputStream inputStream,
                                 boolean encode)
        Deprecated.
        Constructs a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original provided InputStream.
        Parameters:
        inputStream - InputStream to wrap.
        encode - true if we should encode all data read from us, false if we should decode.
      • Base16InputStream

        @Deprecated
        public Base16InputStream​(java.io.InputStream inputStream,
                                 boolean encode,
                                 boolean lowerCase)
        Deprecated.
        Constructs a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original provided InputStream.
        Parameters:
        inputStream - InputStream to wrap.
        encode - true if we should encode all data read from us, false if we should decode.
        lowerCase - if true then use a lower-case Base16 alphabet.
      • Base16InputStream

        @Deprecated
        public Base16InputStream​(java.io.InputStream inputStream,
                                 boolean encode,
                                 boolean lowerCase,
                                 CodecPolicy decodingPolicy)
        Deprecated.
        Constructs a Base16InputStream such that all data read is either Base16-encoded or Base16-decoded from the original provided InputStream.
        Parameters:
        inputStream - InputStream to wrap.
        encode - true if we should encode all data read from us, false if we should decode.
        lowerCase - if true then use a lower-case Base16 alphabet.
        decodingPolicy - Decoding policy.