当前位置: 首页>>代码示例>>Java>>正文


Java TypesWriter.writeString方法代码示例

本文整理汇总了Java中com.trilead.ssh2.packets.TypesWriter.writeString方法的典型用法代码示例。如果您正苦于以下问题:Java TypesWriter.writeString方法的具体用法?Java TypesWriter.writeString怎么用?Java TypesWriter.writeString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.trilead.ssh2.packets.TypesWriter的用法示例。


在下文中一共展示了TypesWriter.writeString方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: sendIdentities

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
private void sendIdentities() throws IOException
{
	Map<String,byte[]> keys = null;

	TypesWriter tw = new TypesWriter();
	tw.writeByte(SSH2_AGENT_IDENTITIES_ANSWER);
	int numKeys = 0;

	if (!authAgent.isAgentLocked())
		keys = authAgent.retrieveIdentities();

	if (keys != null)
		numKeys = keys.size();

	tw.writeUINT32(numKeys);

	if (keys != null) {
		for (Entry<String,byte[]> entry : keys.entrySet()) {
			byte[] keyBytes = entry.getValue();
			tw.writeString(keyBytes, 0, keyBytes.length);
			tw.writeString(entry.getKey());
		}
	}

	sendPacket(tw.getBytes());
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:27,代码来源:AuthAgentForwardThread.java

示例2: encodeSSHRSASignature

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHRSASignature(byte[] s) throws IOException
{
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-rsa");

	/* S is NOT an MPINT. "The value for 'rsa_signature_blob' is encoded as a string
	 * containing s (which is an integer, without lengths or padding, unsigned and in
	 * network byte order)."
	 */

	/* Remove first zero sign byte, if present */

	if ((s.length > 1) && (s[0] == 0x00))
		tw.writeString(s, 1, s.length - 1);
	else
		tw.writeString(s, 0, s.length);

	return tw.getBytes();
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:21,代码来源:RSASHA1Verify.java

示例3: setstat

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 *  Modify the attributes of a file. Used for operations such as changing
 *  the ownership, permissions or access times, as well as for truncating a file.
 * 
 * @param path See the {@link SFTPv3Client comment} for the class for more details.
 * @param attr A SFTPv3FileAttributes object. Specifies the modifications to be
 *             made to the attributes of the file. Empty fields will be ignored.
 * @throws IOException
 */
public void setstat(String path, SFTPv3FileAttributes attr) throws IOException
{
	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(path, charsetName);
	tw.writeBytes(createAttrs(attr));

	if (debug != null)
	{
		debug.println("Sending SSH_FXP_SETSTAT...");
		debug.flush();
	}

	sendMessage(Packet.SSH_FXP_SETSTAT, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:28,代码来源:SFTPv3Client.java

示例4: encodeSSHRSASignature

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHRSASignature(RSASignature sig) throws IOException
{
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-rsa");

	/* S is NOT an MPINT. "The value for 'rsa_signature_blob' is encoded as a string
	 * containing s (which is an integer, without lengths or padding, unsigned and in
	 * network byte order)."
	 */

	byte[] s = sig.getS().toByteArray();

	/* Remove first zero sign byte, if present */

	if ((s.length > 1) && (s[0] == 0x00))
		tw.writeString(s, 1, s.length - 1);
	else
		tw.writeString(s, 0, s.length);

	return tw.getBytes();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:23,代码来源:RSASHA1Verify.java

示例5: encodeSSHRSASignature

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHRSASignature(RSASignature sig)
		throws IOException {
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-rsa");

	/*
	 * S is NOT an MPINT. "The value for 'rsa_signature_blob' is encoded as
	 * a string containing s (which is an integer, without lengths or
	 * padding, unsigned and in network byte order)."
	 */

	byte[] s = sig.getS().toByteArray();

	/* Remove first zero sign byte, if present */

	if ((s.length > 1) && (s[0] == 0x00))
		tw.writeString(s, 1, s.length - 1);
	else
		tw.writeString(s, 0, s.length);

	return tw.getBytes();
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:24,代码来源:RSASHA1Verify.java

示例6: fsetstat

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 * Modify the attributes of a file. Used for operations such as changing the
 * ownership, permissions or access times, as well as for truncating a file.
 * 
 * @param handle
 *            a SFTPv3FileHandle handle
 * @param attr
 *            A SFTPv3FileAttributes object. Specifies the modifications to
 *            be made to the attributes of the file. Empty fields will be
 *            ignored.
 * @throws IOException
 */
public void fsetstat(SFTPv3FileHandle handle, SFTPv3FileAttributes attr)
		throws IOException {
	checkHandleValidAndOpen(handle);

	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(handle.fileHandle, 0, handle.fileHandle.length);
	tw.writeBytes(createAttrs(attr));

	if (debug != null) {
		debug.println("Sending SSH_FXP_FSETSTAT...");
		debug.flush();
	}

	sendMessage(Packet.SSH_FXP_FSETSTAT, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:32,代码来源:SFTPv3Client.java

示例7: setstat

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 * Modify the attributes of a file. Used for operations such as changing the
 * ownership, permissions or access times, as well as for truncating a file.
 * 
 * @param path
 *            See the {@link SFTPv3Client comment} for the class for more
 *            details.
 * @param attr
 *            A SFTPv3FileAttributes object. Specifies the modifications to
 *            be made to the attributes of the file. Empty fields will be
 *            ignored.
 * @throws IOException
 */
public void setstat(String path, SFTPv3FileAttributes attr)
		throws IOException {
	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(path, charsetName);
	tw.writeBytes(createAttrs(attr));

	if (debug != null) {
		debug.println("Sending SSH_FXP_SETSTAT...");
		debug.flush();
	}

	sendMessage(Packet.SSH_FXP_SETSTAT, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:jianlinwei,项目名称:sshtunnel,代码行数:31,代码来源:SFTPv3Client.java

示例8: fsetstat

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 * 	Modify the attributes of a file. Used for operations such as changing
 *  the ownership, permissions or access times, as well as for truncating a file.
 * 
 * @param handle a SFTPv3FileHandle handle
 * @param attr A SFTPv3FileAttributes object. Specifies the modifications to be
 *             made to the attributes of the file. Empty fields will be ignored.
 * @throws IOException
 */
public void fsetstat(SFTPv3FileHandle handle, SFTPv3FileAttributes attr) throws IOException
{
	checkHandleValidAndOpen(handle);

	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(handle.fileHandle, 0, handle.fileHandle.length);
	tw.writeBytes(createAttrs(attr));

	if (debug != null)
	{
		debug.println("Sending SSH_FXP_FSETSTAT...");
		debug.flush();
	}

	sendMessage(Packet.SSH_FXP_FSETSTAT, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:30,代码来源:SFTPv3Client.java

示例9: createSymlink

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 * Create a symbolic link on the server. Creates a link "src" that points
 * to "target".
 * 
 * @param src See the {@link SFTPv3Client comment} for the class for more details.
 * @param target See the {@link SFTPv3Client comment} for the class for more details.
 * @throws IOException
 */
public void createSymlink(String src, String target) throws IOException
{
	int req_id = generateNextRequestID();

	/* Either I am too stupid to understand the SFTP draft
	 * or the OpenSSH guys changed the semantics of src and target.
	 */

	TypesWriter tw = new TypesWriter();
	tw.writeString(target, charsetName);
	tw.writeString(src, charsetName);

	if (debug != null)
	{
		debug.println("Sending SSH_FXP_SYMLINK...");
		debug.flush();
	}

	sendMessage(Packet.SSH_FXP_SYMLINK, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:lshain-android-source,项目名称:tools-idea,代码行数:31,代码来源:SFTPv3Client.java

示例10: encodeSSHDSAPublicKey

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHDSAPublicKey(DSAPublicKey pk) throws IOException
{
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-dss");

	DSAParams params = pk.getParams();
	tw.writeMPInt(params.getP());
	tw.writeMPInt(params.getQ());
	tw.writeMPInt(params.getG());
	tw.writeMPInt(pk.getY());

	return tw.getBytes();
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:15,代码来源:DSASHA1Verify.java

示例11: rmdir

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
/**
 * Remove an empty directory. 
 * 
 * @param dirName See the {@link SFTPv3Client comment} for the class for more details.
 * @throws IOException
 */
public void rmdir(String dirName) throws IOException
{
	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(dirName, charsetName);

	sendMessage(Packet.SSH_FXP_RMDIR, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:18,代码来源:SFTPv3Client.java

示例12: encodeSSHRSAPublicKey

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHRSAPublicKey(RSAPublicKey pk) throws IOException
{
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-rsa");
	tw.writeMPInt(pk.getPublicExponent());
	tw.writeMPInt(pk.getModulus());

	return tw.getBytes();
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:11,代码来源:RSASHA1Verify.java

示例13: encodeSSHECDSASignature

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHECDSASignature(byte[] sig, ECParameterSpec params) throws IOException
{
	TypesWriter tw = new TypesWriter();

	String curveName = getCurveName(params);
	tw.writeString(ECDSA_SHA2_PREFIX + curveName);

	if ((sig[0] != 0x30) || (sig[1] != sig.length - 2) || (sig[2] != 0x02)) {
		throw new IOException("Invalid signature format");
	}

	int rLength = sig[3];
	if ((rLength + 6 > sig.length) || (sig[4 + rLength] != 0x02)) {
		throw new IOException("Invalid signature format");
	}

	int sLength = sig[5 + rLength];
	if (6 + rLength + sLength > sig.length) {
		throw new IOException("Invalid signature format");
	}

	byte[] rArray = new byte[rLength];
	byte[] sArray = new byte[sLength];

	System.arraycopy(sig, 4, rArray, 0, rLength);
	System.arraycopy(sig, 6 + rLength, sArray, 0, sLength);

	BigInteger r = new BigInteger(rArray);
	BigInteger s = new BigInteger(sArray);

	// Write the <r,s> to its own types writer.
	TypesWriter rsWriter = new TypesWriter();
	rsWriter.writeMPInt(r);
	rsWriter.writeMPInt(s);
	byte[] encoded = rsWriter.getBytes();
	tw.writeString(encoded, 0, encoded.length);

	return tw.getBytes();
}
 
开发者ID:dragonlinux,项目名称:connectbot,代码行数:40,代码来源:ECDSASHA2Verify.java

示例14: encodeSSHDSAPublicKey

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
public static byte[] encodeSSHDSAPublicKey(DSAPublicKey pk) throws IOException
{
	TypesWriter tw = new TypesWriter();

	tw.writeString("ssh-dss");
	tw.writeMPInt(pk.getP());
	tw.writeMPInt(pk.getQ());
	tw.writeMPInt(pk.getG());
	tw.writeMPInt(pk.getY());

	return tw.getBytes();
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:13,代码来源:DSASHA1Verify.java

示例15: closeHandle

import com.trilead.ssh2.packets.TypesWriter; //导入方法依赖的package包/类
private final void closeHandle(byte[] handle) throws IOException
{
	int req_id = generateNextRequestID();

	TypesWriter tw = new TypesWriter();
	tw.writeString(handle, 0, handle.length);

	sendMessage(Packet.SSH_FXP_CLOSE, req_id, tw.getBytes());

	expectStatusOKMessage(req_id);
}
 
开发者ID:jskierbi,项目名称:intellij-ce-playground,代码行数:12,代码来源:SFTPv3Client.java


注:本文中的com.trilead.ssh2.packets.TypesWriter.writeString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。