MCPcopy Create free account
hub / github.com/TigerVNC/tigervnc / CipherNone

Class CipherNone

java/com/jcraft/jsch/CipherNone.java:32–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

30package com.jcraft.jsch;
31
32public class CipherNone implements Cipher{
33 private static final int ivsize=8;
34 private static final int bsize=16;
35 public int getIVSize(){return ivsize;}
36 public int getBlockSize(){return bsize;}
37 public void init(int mode, byte[] key, byte[] iv) throws Exception{
38 }
39 public void update(byte[] foo, int s1, int len, byte[] bar, int s2) throws Exception{
40 }
41 public boolean isCBC(){return false; }
42}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected