**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/
20 lines
928 B
TypeScript
20 lines
928 B
TypeScript
/**
|
|
* SHA2-256 a.k.a. sha256. In JS, it is the fastest hash, even faster than Blake3.
|
|
*
|
|
* To break sha256 using birthday attack, attackers need to try 2^128 hashes.
|
|
* BTC network is doing 2^70 hashes/sec (2^95 hashes/year) as per 2025.
|
|
*
|
|
* Check out [FIPS 180-4](https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.180-4.pdf).
|
|
* @module
|
|
* @deprecated
|
|
*/
|
|
import { SHA224 as SHA224n, sha224 as sha224n, SHA256 as SHA256n, sha256 as sha256n } from './sha2.ts';
|
|
/** @deprecated Use import from `noble/hashes/sha2` module */
|
|
export declare const SHA256: typeof SHA256n;
|
|
/** @deprecated Use import from `noble/hashes/sha2` module */
|
|
export declare const sha256: typeof sha256n;
|
|
/** @deprecated Use import from `noble/hashes/sha2` module */
|
|
export declare const SHA224: typeof SHA224n;
|
|
/** @deprecated Use import from `noble/hashes/sha2` module */
|
|
export declare const sha224: typeof sha224n;
|
|
//# sourceMappingURL=sha256.d.ts.map
|