what-the-bank/sources/org/bouncycastle/pqc/math/linearalgebra/Vector.java

25 lines
529 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.pqc.math.linearalgebra;
/* loaded from: classes6.dex */
public abstract class Vector {
protected int length;
public abstract Vector add(Vector vector);
public abstract boolean equals(Object obj);
public abstract byte[] getEncoded();
public abstract int hashCode();
public abstract boolean isZero();
public abstract Vector multiply(Permutation permutation);
public abstract String toString();
public final int getLength() {
return this.length;
}
}