Translator.java
资源名称:security.rar [点击查看]
上传用户:lior1029
上传日期:2013-05-07
资源大小:209k
文件大小:1k
源码类别:
CA认证
开发平台:
Java
- package org.bouncycastle.util.encoders;
- /**
- * general interface for an translator.
- */
- public interface Translator
- {
- /**
- * size of the output block on encoding produced by getDecodedBlockSize()
- * bytes.
- */
- public int getEncodedBlockSize();
- public int encode(byte[] in, int inOff, int length, byte[] out, int outOff);
- /**
- * size of the output block on decoding produced by getEncodedBlockSize()
- * bytes.
- */
- public int getDecodedBlockSize();
- public int decode(byte[] in, int inOff, int length, byte[] out, int outOff);
- }