初始化
This commit is contained in:
15
Project/Src/com/cscn/Zuc256MacCtx.java
Normal file
15
Project/Src/com/cscn/Zuc256MacCtx.java
Normal file
@@ -0,0 +1,15 @@
|
||||
package com.cscn;
|
||||
|
||||
/**
|
||||
* MAC上下文类
|
||||
*/
|
||||
public final class Zuc256MacCtx {
|
||||
int[] LFSR = new int[16];
|
||||
int R1;
|
||||
int R2;
|
||||
byte[] buf = new byte[4];
|
||||
int buflen;
|
||||
int[] T = new int[4];
|
||||
int[] K0 = new int[4];
|
||||
int macbits;
|
||||
}
|
||||
Reference in New Issue
Block a user