Skip to content

Commit fbf7a72

Browse files
committed
WIP WP Changes
1 parent ef35104 commit fbf7a72

File tree

19 files changed

+81
-6
lines changed

19 files changed

+81
-6
lines changed

.vscode/settings.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,5 +239,48 @@
239239
"hint"
240240
],
241241
"explorer.copyRelativePathSeparator": "/",
242+
"files.associations": {
243+
"*.html": "html",
244+
"*.block": "cbor",
245+
"*.hbs": "handlebars",
246+
"*.umm": "javascript",
247+
"__bit_reference": "cpp",
248+
"__hash_table": "cpp",
249+
"__locale": "cpp",
250+
"__split_buffer": "cpp",
251+
"array": "cpp",
252+
"atomic": "cpp",
253+
"bitset": "cpp",
254+
"complex": "cpp",
255+
"cstddef": "cpp",
256+
"cstdio": "cpp",
257+
"cstdlib": "cpp",
258+
"cstring": "cpp",
259+
"ctime": "cpp",
260+
"cwchar": "cpp",
261+
"deque": "cpp",
262+
"memory": "cpp",
263+
"format": "cpp",
264+
"initializer_list": "cpp",
265+
"ios": "cpp",
266+
"istream": "cpp",
267+
"iterator": "cpp",
268+
"locale": "cpp",
269+
"mutex": "cpp",
270+
"new": "cpp",
271+
"optional": "cpp",
272+
"print": "cpp",
273+
"string": "cpp",
274+
"string_view": "cpp",
275+
"tuple": "cpp",
276+
"type_traits": "cpp",
277+
"typeinfo": "cpp",
278+
"unordered_map": "cpp",
279+
"utility": "cpp",
280+
"variant": "cpp",
281+
"vector": "cpp",
282+
"string.h": "c",
283+
"stdlib.h": "c"
284+
},
242285

243286
}

VIAT.pages

11.4 KB
Binary file not shown.

utilities/cryptography/keyExchange/kyber768_x25519.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,8 @@ export const kyber768_x25519 = keyExchange({
171171
alias: 'kyber768_x25519',
172172
description: 'Crystals-Kyber768 with X25519 and SHAKE256.',
173173
id: 3,
174+
x25519,
175+
kyber768,
174176
keyExchangeKeypair,
175177
clientEphemeralKeypair,
176178
serverEphemeralKeypair,

utilities/cryptography/signature/viat.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,10 @@ export const viat = signatureScheme({
221221
verifyEach,
222222
verifyPartial,
223223
exportKeypair,
224+
dilithium: dilithium65,
225+
ed25519: ed25519Utils,
226+
sphincs: sphincs192,
227+
preferred: true,
224228
});
225229
export default viat;
226230
// const key = await viat.signatureKeypair();

viat/blocks/methods/accessors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {
22
assign, everyArray, get, hasValue, isArray, isBigInt, isPlainObject, merge, toPath,
33
} from '@universalweb/utilitylib';
4-
import { getWallet } from '#viat/blocks/types/transactions/wallet/uri';
4+
import { getWallet } from '#blockswallet/uri';
55
import { readStructured } from '#utilities/file';
66
import { toBase64Url } from '#crypto/utils.js';
77
const methods = {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

viat/blocks/types/transactions/receipt/uri.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
getWalletURL,
55
walletPathToURL,
66
walletURLToPath,
7-
} from '#viat/blocks/types/transactions/wallet/uri';
7+
} from '#blockswallet/uri';
88
import blockDefaults from '#viat/blocks/defaults';
99
import defaults from './defaults.js';
1010
import { isNotString } from '@universalweb/utilitylib';

0 commit comments

Comments
 (0)