org.apache.sshd.common.util.buffer.Buffer.getRawPublicKey()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(2.8k)|赞(0)|评价(0)|浏览(109)

本文整理了Java中org.apache.sshd.common.util.buffer.Buffer.getRawPublicKey()方法的一些代码示例,展示了Buffer.getRawPublicKey()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Buffer.getRawPublicKey()方法的具体详情如下:
包路径:org.apache.sshd.common.util.buffer.Buffer
类名称:Buffer
方法名:getRawPublicKey

Buffer.getRawPublicKey介绍

暂无

代码示例

代码示例来源:origin: org.apache.sshd/sshd-common

public PublicKey getRawPublicKey() throws SshException {
  return getRawPublicKey(BufferPublicKeyParser.DEFAULT);
}

代码示例来源:origin: org.apache.sshd/sshd-osgi

public PublicKey getRawPublicKey() throws SshException {
  return getRawPublicKey(BufferPublicKeyParser.DEFAULT);
}

代码示例来源:origin: org.apache.sshd/sshd-common

/**
 * @param parser A {@link BufferPublicKeyParser} to extract the key from the buffer
 * - never {@code null}
 * @return The extracted {@link PublicKey} - may be {@code null} if the parser so decided
 * @throws SshException If failed to extract the key
 * @see #getRawPublicKey(BufferPublicKeyParser)
 */
public PublicKey getPublicKey(BufferPublicKeyParser<? extends PublicKey> parser) throws SshException {
  int ow = wpos();
  int len = getInt();
  wpos(rpos() + len);
  try {
    return getRawPublicKey(parser);
  } finally {
    wpos(ow);
  }
}

代码示例来源:origin: org.apache.sshd/sshd-osgi

/**
 * @param parser A {@link BufferPublicKeyParser} to extract the key from the buffer
 * - never {@code null}
 * @return The extracted {@link PublicKey} - may be {@code null} if the parser so decided
 * @throws SshException If failed to extract the key
 * @see #getRawPublicKey(BufferPublicKeyParser)
 */
public PublicKey getPublicKey(BufferPublicKeyParser<? extends PublicKey> parser) throws SshException {
  int ow = wpos();
  int len = getInt();
  if (len < 0) {
    throw new SshException("Illogical public key length: " + len);
  }
  wpos(rpos() + len);
  try {
    return getRawPublicKey(parser);
  } finally {
    wpos(ow);
  }
}

代码示例来源:origin: org.apache.sshd/sshd-osgi

PublicKey key = buffer.getRawPublicKey();
Collection<NamedFactory<Signature>> factories =
  ValidateUtils.checkNotNullAndNotEmpty(

代码示例来源:origin: org.apache.sshd/sshd-core

PublicKey key = buffer.getRawPublicKey();
Collection<NamedFactory<Signature>> factories =
  ValidateUtils.checkNotNullAndNotEmpty(

代码示例来源:origin: org.apache.sshd/sshd-osgi

PublicKey clientKey = buf.getRawPublicKey();
List<X509Certificate> certs = Collections.emptyList();
remaining = buf.available();

代码示例来源:origin: org.apache.sshd/sshd-core

PublicKey clientKey = buf.getRawPublicKey();
List<X509Certificate> certs = Collections.emptyList();
if (buf.available() > 0) {

代码示例来源:origin: org.apache.sshd/sshd-core

serverKey = buffer.getRawPublicKey();
String keyAlg = KeyUtils.getKeyType(serverKey);
if (GenericUtils.isEmpty(keyAlg)) {

代码示例来源:origin: org.apache.sshd/sshd-core

serverKey = buffer.getRawPublicKey();

代码示例来源:origin: org.apache.sshd/sshd-osgi

serverKey = buffer.getRawPublicKey();

代码示例来源:origin: org.apache.sshd/sshd-osgi

serverKey = buffer.getRawPublicKey();
String keyAlg = KeyUtils.getKeyType(serverKey);
if (GenericUtils.isEmpty(keyAlg)) {

相关文章