25 lines
529 B
Java
25 lines
529 B
Java
|
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;
|
||
|
}
|
||
|
}
|