package im.actor.runtime.crypto.primitives.kuznechik; // Disabling Bounds checks for speeding up calculations /*-[ #define J2OBJC_DISABLE_ALL_CHECKS 1 ]-*/ /** * Internal presentation of a Kuzhechik key */ class KuzIntKey { private final Kuz128[] k; public KuzIntKey(Kuz128[] k) { this.k = k; } public KuzIntKey() { this.k = new Kuz128[10]; for (int i = 0; i < 10; i++) { k[i] = new Kuz128(); } } public Kuz128[] getK() { return k; } }