17 lines
378 B
Java
17 lines
378 B
Java
package com.cscn;
|
||
|
||
/**
|
||
* ZUC状态类(JavaCard版,int 拆为 hi/lo short)
|
||
*/
|
||
public final class Zuc256State {
|
||
// LFSR: 原 int[16] -> hi/lo 各 16
|
||
public short[] LFSR_hi = new short[16];
|
||
public short[] LFSR_lo = new short[16];
|
||
|
||
// R1, R2: 原 int -> hi/lo
|
||
public short R1_hi;
|
||
public short R1_lo;
|
||
public short R2_hi;
|
||
public short R2_lo;
|
||
}
|