Package org.bouncycastle.util
Class GF16
- java.lang.Object
-
- org.bouncycastle.util.GF16
-
@Deprecated public class GF16 extends java.lang.ObjectDeprecated.moved toGF16; this type now delegates there and will be removed in a future release.GF(2^4) helpers.
-
-
Constructor Summary
Constructors Constructor Description GF16()Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static voiddecode(byte[] input, byte[] output, int outputLen)Deprecated.static voiddecode(byte[] input, int inOff, byte[] output, int outOff, int outputLen)Deprecated.static voidencode(byte[] input, byte[] output, int inputLen)Deprecated.static voidencode(byte[] input, byte[] output, int outOff, int inputLen)Deprecated.static byteinnerProduct(byte[] a, int aOff, byte[] b, int bOff, int rank)Deprecated.static byteinv(byte a)Deprecated.useGF16.inv(byte).static bytemul(byte a, byte b)Deprecated.useGF16.mul(byte, byte).static intmul(int a, int b)Deprecated.useGF16.mul(int, int).
-
-
-
Method Detail
-
mul
@Deprecated public static byte mul(byte a, byte b)Deprecated.useGF16.mul(byte, byte).
-
mul
@Deprecated public static int mul(int a, int b)Deprecated.useGF16.mul(int, int).
-
inv
@Deprecated public static byte inv(byte a)
Deprecated.useGF16.inv(byte).
-
decode
@Deprecated public static void decode(byte[] input, byte[] output, int outputLen)Deprecated.
-
decode
@Deprecated public static void decode(byte[] input, int inOff, byte[] output, int outOff, int outputLen)Deprecated.
-
encode
@Deprecated public static void encode(byte[] input, byte[] output, int inputLen)Deprecated.
-
encode
@Deprecated public static void encode(byte[] input, byte[] output, int outOff, int inputLen)Deprecated.
-
innerProduct
@Deprecated public static byte innerProduct(byte[] a, int aOff, byte[] b, int bOff, int rank)Deprecated.
-
-