2023-05-29 15:24:57 -04:00
|
|
|
import 'dart:async';
|
|
|
|
import 'dart:typed_data';
|
|
|
|
|
|
|
|
import 'package:charcode/charcode.dart';
|
2023-07-05 18:48:06 -04:00
|
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
import 'package:freezed_annotation/freezed_annotation.dart';
|
2023-05-29 15:24:57 -04:00
|
|
|
|
|
|
|
import 'veilid_encoding.dart';
|
|
|
|
import 'veilid.dart';
|
|
|
|
|
|
|
|
//////////////////////////////////////
|
|
|
|
/// CryptoKind
|
|
|
|
|
|
|
|
typedef CryptoKind = int;
|
|
|
|
const CryptoKind cryptoKindVLD0 =
|
|
|
|
$V << 0 | $L << 8 | $D << 16 | $0 << 24; // "VLD0"
|
|
|
|
const CryptoKind cryptoKindNONE =
|
|
|
|
$N << 0 | $O << 8 | $N << 16 | $E << 24; // "NONE"
|
|
|
|
|
|
|
|
String cryptoKindToString(CryptoKind kind) {
|
2023-07-25 01:04:22 -04:00
|
|
|
return cryptoKindToBytes(kind).map((c) => String.fromCharCode(c)).join();
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-21 14:30:10 -04:00
|
|
|
const CryptoKind bestCryptoKind = cryptoKindVLD0;
|
|
|
|
|
2023-07-09 10:55:43 -04:00
|
|
|
Uint8List cryptoKindToBytes(CryptoKind kind) {
|
|
|
|
var b = Uint8List(4);
|
2023-07-25 01:04:22 -04:00
|
|
|
ByteData.sublistView(b).setUint32(0, kind, Endian.big);
|
2023-07-09 10:55:43 -04:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
2023-05-29 15:24:57 -04:00
|
|
|
CryptoKind cryptoKindFromString(String s) {
|
|
|
|
if (s.codeUnits.length != 4) {
|
|
|
|
throw const FormatException("malformed string");
|
|
|
|
}
|
2023-07-25 01:04:22 -04:00
|
|
|
CryptoKind kind = ByteData.sublistView(Uint8List.fromList(s.codeUnits))
|
|
|
|
.getUint32(0, Endian.big);
|
2023-05-29 15:24:57 -04:00
|
|
|
return kind;
|
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////
|
|
|
|
/// Types
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
@immutable
|
|
|
|
class Typed<V extends EncodedString> extends Equatable {
|
|
|
|
final CryptoKind kind;
|
|
|
|
final V value;
|
|
|
|
@override
|
|
|
|
List<Object> get props => [kind, value];
|
|
|
|
|
|
|
|
const Typed({required this.kind, required this.value});
|
2023-05-29 15:24:57 -04:00
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
|
|
|
return "${cryptoKindToString(kind)}:$value";
|
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
factory Typed.fromString(String s) {
|
|
|
|
final parts = s.split(":");
|
2023-05-29 15:24:57 -04:00
|
|
|
if (parts.length < 2 || parts[0].codeUnits.length != 4) {
|
|
|
|
throw const FormatException("malformed string");
|
|
|
|
}
|
2023-07-05 18:48:06 -04:00
|
|
|
final kind = cryptoKindFromString(parts[0]);
|
|
|
|
final value = EncodedString.fromString<V>(parts.sublist(1).join(":"));
|
|
|
|
return Typed(kind: kind, value: value);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-09 10:55:43 -04:00
|
|
|
Uint8List decode() {
|
2023-07-25 01:04:22 -04:00
|
|
|
var b = BytesBuilder();
|
|
|
|
b.add(cryptoKindToBytes(kind));
|
|
|
|
b.add(value.decode());
|
|
|
|
return b.toBytes();
|
2023-07-09 10:55:43 -04:00
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
String toJson() => toString();
|
|
|
|
factory Typed.fromJson(dynamic json) => Typed.fromString(json as String);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
@immutable
|
|
|
|
class KeyPair extends Equatable {
|
|
|
|
final PublicKey key;
|
|
|
|
final PublicKey secret;
|
|
|
|
@override
|
|
|
|
List<Object> get props => [key, secret];
|
|
|
|
|
|
|
|
const KeyPair({required this.key, required this.secret});
|
2023-05-29 15:24:57 -04:00
|
|
|
|
|
|
|
@override
|
|
|
|
String toString() {
|
|
|
|
return "${key.toString()}:${secret.toString()}";
|
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
factory KeyPair.fromString(String s) {
|
|
|
|
final parts = s.split(":");
|
2023-05-29 15:24:57 -04:00
|
|
|
if (parts.length != 2 ||
|
|
|
|
parts[0].codeUnits.length != 43 ||
|
|
|
|
parts[1].codeUnits.length != 43) {
|
|
|
|
throw const FormatException("malformed string");
|
|
|
|
}
|
2023-07-05 18:48:06 -04:00
|
|
|
final key = PublicKey.fromString(parts[0]);
|
|
|
|
final secret = PublicKey.fromString(parts[1]);
|
|
|
|
return KeyPair(key: key, secret: secret);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
String toJson() => toString();
|
|
|
|
factory KeyPair.fromJson(dynamic json) => KeyPair.fromString(json as String);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
@immutable
|
|
|
|
class TypedKeyPair extends Equatable {
|
|
|
|
final CryptoKind kind;
|
|
|
|
final PublicKey key;
|
|
|
|
final PublicKey secret;
|
|
|
|
@override
|
|
|
|
List<Object> get props => [kind, key, secret];
|
|
|
|
|
|
|
|
const TypedKeyPair(
|
|
|
|
{required this.kind, required this.key, required this.secret});
|
2023-05-29 15:24:57 -04:00
|
|
|
|
|
|
|
@override
|
2023-07-05 18:48:06 -04:00
|
|
|
String toString() =>
|
|
|
|
"${cryptoKindToString(kind)}:${key.toString()}:${secret.toString()}";
|
2023-05-29 15:24:57 -04:00
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
factory TypedKeyPair.fromString(String s) {
|
|
|
|
final parts = s.split(":");
|
2023-05-29 15:24:57 -04:00
|
|
|
if (parts.length != 3 ||
|
|
|
|
parts[0].codeUnits.length != 4 ||
|
|
|
|
parts[1].codeUnits.length != 43 ||
|
|
|
|
parts[2].codeUnits.length != 43) {
|
|
|
|
throw VeilidAPIExceptionInvalidArgument("malformed string", "s", s);
|
|
|
|
}
|
2023-07-05 18:48:06 -04:00
|
|
|
final kind = cryptoKindFromString(parts[0]);
|
|
|
|
final key = PublicKey.fromString(parts[1]);
|
|
|
|
final secret = PublicKey.fromString(parts[2]);
|
|
|
|
return TypedKeyPair(kind: kind, key: key, secret: secret);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
2023-07-05 18:48:06 -04:00
|
|
|
String toJson() => toString();
|
|
|
|
factory TypedKeyPair.fromJson(dynamic json) =>
|
|
|
|
TypedKeyPair.fromString(json as String);
|
2023-07-21 14:30:10 -04:00
|
|
|
factory TypedKeyPair.fromKeyPair(CryptoKind kind, KeyPair keyPair) =>
|
|
|
|
TypedKeyPair(kind: kind, key: keyPair.key, secret: keyPair.secret);
|
2023-05-29 15:24:57 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef CryptoKey = FixedEncodedString43;
|
|
|
|
typedef Signature = FixedEncodedString86;
|
|
|
|
typedef Nonce = FixedEncodedString32;
|
|
|
|
|
|
|
|
typedef PublicKey = CryptoKey;
|
|
|
|
typedef SecretKey = CryptoKey;
|
|
|
|
typedef HashDigest = CryptoKey;
|
|
|
|
typedef SharedSecret = CryptoKey;
|
|
|
|
typedef CryptoKeyDistance = CryptoKey;
|
|
|
|
|
|
|
|
typedef TypedKey = Typed<CryptoKey>;
|
2023-07-02 11:31:53 -04:00
|
|
|
typedef TypedSecret = Typed<SecretKey>;
|
2023-07-07 19:32:59 -04:00
|
|
|
typedef TypedHashDigest = Typed<HashDigest>;
|
2023-07-02 11:31:53 -04:00
|
|
|
|
2023-05-29 15:24:57 -04:00
|
|
|
typedef TypedSignature = Typed<Signature>;
|
|
|
|
|
|
|
|
//////////////////////////////////////
|
|
|
|
/// VeilidCryptoSystem
|
|
|
|
|
|
|
|
abstract class VeilidCryptoSystem {
|
|
|
|
CryptoKind kind();
|
|
|
|
Future<SharedSecret> cachedDH(PublicKey key, SecretKey secret);
|
|
|
|
Future<SharedSecret> computeDH(PublicKey key, SecretKey secret);
|
|
|
|
Future<Uint8List> randomBytes(int len);
|
|
|
|
Future<int> defaultSaltLength();
|
|
|
|
Future<String> hashPassword(Uint8List password, Uint8List salt);
|
|
|
|
Future<bool> verifyPassword(Uint8List password, String passwordHash);
|
|
|
|
Future<SharedSecret> deriveSharedSecret(Uint8List password, Uint8List salt);
|
|
|
|
Future<Nonce> randomNonce();
|
|
|
|
Future<SharedSecret> randomSharedSecret();
|
|
|
|
Future<KeyPair> generateKeyPair();
|
|
|
|
Future<HashDigest> generateHash(Uint8List data);
|
|
|
|
//Future<HashDigest> generateHashReader(Stream<List<int>> reader);
|
|
|
|
Future<bool> validateKeyPair(PublicKey key, SecretKey secret);
|
2023-07-19 10:07:51 -04:00
|
|
|
Future<bool> validateKeyPairWithKeyPair(KeyPair keyPair) {
|
|
|
|
return validateKeyPair(keyPair.key, keyPair.secret);
|
|
|
|
}
|
|
|
|
|
2023-05-29 15:24:57 -04:00
|
|
|
Future<bool> validateHash(Uint8List data, HashDigest hash);
|
|
|
|
//Future<bool> validateHashReader(Stream<List<int>> reader, HashDigest hash);
|
|
|
|
Future<CryptoKeyDistance> distance(CryptoKey key1, CryptoKey key2);
|
|
|
|
Future<Signature> sign(PublicKey key, SecretKey secret, Uint8List data);
|
2023-07-19 10:07:51 -04:00
|
|
|
Future<Signature> signWithKeyPair(KeyPair keyPair, Uint8List data) {
|
|
|
|
return sign(keyPair.key, keyPair.secret, data);
|
|
|
|
}
|
|
|
|
|
2023-05-29 15:24:57 -04:00
|
|
|
Future<void> verify(PublicKey key, Uint8List data, Signature signature);
|
|
|
|
Future<int> aeadOverhead();
|
|
|
|
Future<Uint8List> decryptAead(Uint8List body, Nonce nonce,
|
|
|
|
SharedSecret sharedSecret, Uint8List? associatedData);
|
|
|
|
Future<Uint8List> encryptAead(Uint8List body, Nonce nonce,
|
|
|
|
SharedSecret sharedSecret, Uint8List? associatedData);
|
|
|
|
Future<Uint8List> cryptNoAuth(
|
|
|
|
Uint8List body, Nonce nonce, SharedSecret sharedSecret);
|
|
|
|
}
|