DartX25519 class

X25519 implemented in pure Dart.

For more information about the algorithm and examples, see documentation for the class X25519.

Inheritance
Mixed in types

Constructors

DartX25519({Random? random})
const

Properties

hashCode int
The hash code for this object.
no setterinherited
keyPairType KeyPairType<KeyPairData, PublicKey>
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

newKeyExchangeWand() Future<KeyExchangeWand>
Returns a new KeyExchangeWand that has a random KeyPair.
inherited
newKeyExchangeWandFromKeyPair(KeyPair keyPair) Future<KeyExchangeWand>
Returns a new KeyExchangeWand that uses the given KeyPair.
inherited
newKeyPair() Future<SimpleKeyPair>
Generates a new KeyPair that can be used with this algorithm.
inherited
newKeyPairFromSeed(List<int> seed) Future<SimpleKeyPair>
Generates a key pair from the seed.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
sharedSecretKey({required KeyPair keyPair, required PublicKey remotePublicKey}) Future<SecretKey>
Calculates a shared SecretKey.
inherited
sharedSecretSync({required KeyPairData keyPairData, required PublicKey remotePublicKey}) SecretKey
Computes shared secret synchronously (unlike sharedSecretKey).
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

modifiedPrivateKeyBytes(List<int> seed) Uint8List
Modifies certain bits of seed so that the result is a valid secret key.