**Motivations:** - Consigner l'état actuel du dépôt (cron, service-login-verify, website-skeleton, userwallet, docs). - Centraliser les modifications en attente. **Root causes:** - N/A (commit groupé). **Correctifs:** - N/A. **Evolutions:** - Cron quotidien restart services : script local sans SSH, systemd (bitcoin-signet, bitcoin, APIs, dashboard, userwallet, website-skeleton) + Docker (mempool, bitcoin-signet-instance). - Feature cron-restart-services-local : documentation et règle scripts locaux / pas d'SSH. - service-login-verify : module vérification login (buildAllowedPubkeys, verifyLoginProof, nonceCache). - website-skeleton : app iframe UserWallet, config, systemd unit. - userwallet : collectSignatures, relay. - docs : DOMAINS_AND_PORTS, README, WEBSITE_SKELETON ; features userwallet-contrat-login, timeouts-backoff, service-login-verify. **Pages affectées:** - data/restart-services-cron.sh, data/restart-services.log, data/sync-utxos.log - features/cron-restart-services-local.md, features/service-login-verify.md, features/userwallet-contrat-login-reste-a-faire.md, features/userwallet-timeouts-backoff.md - docs/DOMAINS_AND_PORTS.md, docs/README.md, docs/WEBSITE_SKELETON.md - configure-nginx-proxy.sh - service-login-verify/ (src, dist, node_modules) - userwallet/src/utils/collectSignatures.ts, userwallet/src/utils/relay.ts - website-skeleton/
33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
"use strict";
|
|
/**
|
|
* Audited & minimal JS implementation of hash functions, MACs and KDFs. Check out individual modules.
|
|
* @module
|
|
* @example
|
|
```js
|
|
import {
|
|
sha256, sha384, sha512, sha224, sha512_224, sha512_256
|
|
} from '@noble/hashes/sha2';
|
|
import {
|
|
sha3_224, sha3_256, sha3_384, sha3_512,
|
|
keccak_224, keccak_256, keccak_384, keccak_512,
|
|
shake128, shake256
|
|
} from '@noble/hashes/sha3';
|
|
import {
|
|
cshake128, cshake256,
|
|
turboshake128, turboshake256,
|
|
kmac128, kmac256,
|
|
tuplehash256, parallelhash256,
|
|
k12, m14, keccakprg
|
|
} from '@noble/hashes/sha3-addons';
|
|
import { blake3 } from '@noble/hashes/blake3';
|
|
import { blake2b, blake2s } from '@noble/hashes/blake2';
|
|
import { hmac } from '@noble/hashes/hmac';
|
|
import { hkdf } from '@noble/hashes/hkdf';
|
|
import { pbkdf2, pbkdf2Async } from '@noble/hashes/pbkdf2';
|
|
import { scrypt, scryptAsync } from '@noble/hashes/scrypt';
|
|
import { md5, ripemd160, sha1 } from '@noble/hashes/legacy';
|
|
import * as utils from '@noble/hashes/utils';
|
|
```
|
|
*/
|
|
throw new Error('root module cannot be imported: import submodules instead. Check out README');
|
|
//# sourceMappingURL=index.js.map
|