org.bouncycastle.pqc.legacy.crypto.qtesla.IntSlicer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bcprov-ext-debug-jdk18on Show documentation
Show all versions of bcprov-ext-debug-jdk18on Show documentation
The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. This jar contains JCE provider and lightweight API for the Bouncy Castle Cryptography APIs for Java 1.8 and later with debug enabled.
The newest version!
package org.bouncycastle.pqc.legacy.crypto.qtesla;
/**
* Simulates pointer arithmetic.
* A utility for porting C to Java where C code makes heavy use of pointer arithmetic.
*
* @Deprecated Remove when Post-Quantum Standardization project has finished and standard is published.
*/
final class IntSlicer
{
private final int[] values;
private int base;
IntSlicer(int[] values, int base)
{
this.values = values;
this.base = base;
}
final int at(int index)
{
return values[base + index];
}
final int at(int index, int value)
{
return values[base + index] = value;
}
final int at(int index, long value)
{
return values[base + index] = (int)value;
}
final IntSlicer from(int o)
{
return new IntSlicer(values, base + o);
}
final void incBase(int paramM)
{
base += paramM;
}
final IntSlicer copy()
{
return new IntSlicer(values, base);
}
}