All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.sshd.putty.PuttyKeyReader Maven / Gradle / Ivy

Go to download

The Apache Software Foundation provides support for the Apache community of open-source software projects. The Apache projects are characterized by a collaborative, consensus based development process, an open and pragmatic software license, and a desire to create high quality software that leads the way in its field. We consider ourselves not simply a group of projects sharing a server, but rather a community of developers and users.

There is a newer version: 2.14.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package org.apache.sshd.putty;

import java.io.Closeable;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.StreamCorruptedException;
import java.math.BigInteger;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;

/**
 * Helper class for {@code Putty} key files decoders
 * 
 * @author Apache MINA SSHD Project
 */
public class PuttyKeyReader implements Closeable {
    private final DataInputStream di;

    public PuttyKeyReader(InputStream s) {
        di = new DataInputStream(s);
    }

    public void skip() throws IOException {
        int skipSize = di.readInt();
        int effectiveSkip = di.skipBytes(skipSize);
        if (skipSize != effectiveSkip) {
            throw new StreamCorruptedException("Mismatched skip size: expected" + skipSize + ", actual=" + effectiveSkip);
        }
    }

    public String readString() throws IOException {
        return readString(StandardCharsets.UTF_8);
    }

    public String readString(Charset cs) throws IOException {
        byte[] data = read(Short.MAX_VALUE); // reasonable value for any expected string
        return new String(data, cs);
    }

    public BigInteger readInt() throws IOException {
        byte[] bytes = read(Short.MAX_VALUE); // reasonable value for any expected BigInteger
        return new BigInteger(bytes);
    }

    public byte[] read(int maxAllowed) throws IOException {
        int len = di.readInt();
        if (len > maxAllowed) {
            throw new StreamCorruptedException(
                    "Requested block length (" + len + ") exceeds max. allowed (" + maxAllowed + ")");
        }
        if (len < 0) {
            throw new StreamCorruptedException("Negative block length requested: " + len);
        }
        byte[] r = new byte[len];
        di.readFully(r);
        return r;
    }

    @Override
    public void close() throws IOException {
        di.close();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy