Class WikiClientPublicKey
- java.lang.Object
-
- com.github.glusk.srp6_variables.wiki.WikiClientPublicKey
-
- All Implemented Interfaces:
SRP6IntegerVariable
public final class WikiClientPublicKey extends Object implements SRP6IntegerVariable
Wikipedia Python example variable: client ephemeral public key (A).
-
-
Constructor Summary
Constructors Constructor Description WikiClientPublicKey()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bytesbytes(ByteOrder preferredOrder)ReturnsthisSRP-6 Integer Variable as a byte sequence in the preferred byte order.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.github.glusk.srp6_variables.SRP6IntegerVariable
asNonNegativeBigInteger, bytes, equals
-
-
-
-
Method Detail
-
bytes
public Bytes bytes(ByteOrder preferredOrder)
Description copied from interface:SRP6IntegerVariableReturnsthisSRP-6 Integer Variable as a byte sequence in the preferred byte order.The representation returned must be minimal. That is, all leading (or trailing, depending on the
preferredOrder) zero bytes have to be trimmed.Number zero is hence defined as an empty byte sequence.
- Specified by:
bytesin interfaceSRP6IntegerVariable- Parameters:
preferredOrder- the preferred byte order of the byte sequence that representsthisSRP-6 Integer Variable- Returns:
- the byte sequence that represents
thisSRP-6 Integer Variable in the preferred byte order
-
-