Python en Cardano I OpShin I Cardano sigue creciendo

— El contenido publicado bajo ningún punto de vista es recomendación de inversion. Solo compartimos información y noticias sobre criptomonedas y sobre el ecosistema de Cardano. — Para apoyar el canal podes delegar tu ADA en [1MATE] Stakepool, https://1mate.io/ — Más información en https://twitter.com/agustinenada — Si te gustó el video podés compartirlo https://github.com/OpShin/opshin https://twitter.com/OpShinDev

OpShin, Developing Smart Contract on Cardano Using Python

Unlock the power of smart contract development on the Cardano blockchain with opshin – the programming language designed specifically for this purpose. With opshin, you can use 100% valid Python code to create contracts that evaluate on-chain exactly as their Python counterpart, allowing for unit tests and verification using standard Python development tooling. Additionally, opshin’s […]

Cryptography with Python 40: Recap and summary

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of classic security goals of cryptography 01:20 Summary of cryptographic concepts and primitives covered 🔷🔷 About 🔷🔷 This is the last lesson of the 6h Fundamental Cryptography in Theory and Python course and provides a recap of cryptography as a tool […]

Cryptography with Python 39: Using RSA-PSS & Ed25519 signatures in Python

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of digital signatures 00:56 Using RSA-PSS in Python 04:36 Wrong message detection with RSA-PSS in Python 05:44 Wrong signature detection with RSA-PSS in Python 06:15 Wrong public key detection with RSA-PSS in Python 07:39 Using Ed25519 in Python 09:22 Wrong message […]

Cryptography with Python 38: Digital signatures

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Digital signatures 02:46 Creation of digital signatures 04:05 Verification of digital signatures 05:18 Discussing RSA-PSS, DSA, ECDSA, and EdDSA with Ed25519 and Ed448 🔷🔷 About 🔷🔷 This Fundamental Cryptography in Theory and Python lesson presents the concept of digital signatures, has a […]

Cryptography with Python 37: Non-repudiation as a security goal

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Non-repudiation as a security goal 01:04 Relationship of non-repudiation with authenticity 🔷🔷 About 🔷🔷 This Fundamental Cryptography in Theory and Python lesson presents the concept of non-repudiation as a security goal and discusses its relationship with authenticity. 📝 Resources used and created […]

Cryptography with Python 36: Implementing AES-GCM in Python #2

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Introducing the GCM GHASH hash calculation function 00:57 Introducing the GCM GCTR counter-mode based encryption function 01:57 Implementing GHASH in Python 04:06 Implementing the GCM MUL 128-bit block multiplication function in Python 07:21 Implementing GCTR in Python 11:15 Executing the AES-GCM implementation […]

Cryptography with Python 35: Implementing AES-GCM in Python #1

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Introducing NIST SP 800-38D as official Galois/Counter Mode (GCM) standardization document 01:41 Setting up the AES-GCM implementation in Python using official NIST test vectors 05:38 Implementing the GCM authenticated encryption function in Python 🔷🔷 About 🔷🔷 This Fundamental Cryptography in Theory and […]

Cryptography with Python 34: Using AES-GCM in Python

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of GCM as an instance of AEAD 00:41 Using AES-GCM in Python 05:43 Investigating wrong key detection with AES-GCM in Python 07:34 Investigating wrong IV detection with AES-GCM in Python 08:04 Investigating wrong authentication tag detection with AES-GCM in Python 08:31 […]

Cryptography with Python 33: Implementing Encrypt-then-MAC in Python

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of Encrypt-then-MAC approach 01:20 Setting up the Encrypt-then-MAC implementation in Python 04:18 Implementing the encryption layer with 256-bit AES-CBC in Python 06:52 Implementing the decryption layer with 256-bit AES-CBC in Python 08:25 Implementing the HMAC-SHA-256 mac tag calculation in Python 09:33 […]

Cryptography with Python 32: Implementing HMAC in Python

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of hash-based message authentication code (HMAC) 01:41 Introducing NIST FIPS PUB 198-1 as official HMAC standardization document 02:02 Setting up the HMAC implementation in Python using official NIST test vectors 05:19 Implementing HMAC in Python 08:20 Executing the HMAC mac tag […]

Cryptography with Python 31: Using HMAC in Python

Entire course: ➡️ https://www.youtube.com/playlist?list=PLWjMI9CAmVU4–SmpzgswTvxLkZqC9QWn ⏰ Timestamps for content in this video ⏰ 00:00 Recap of message authentication codes (MAC) 01:04 Using HMAC-SHA-256 in Python 03:11 Wrong message detection with HMAC-SHA-256 in Python 04:41 Wrong key detection with HMAC-SHA-256 in Python 05:33 Wrong mac tag detection with HMAC-SHA-256 in Python 06:21 Wrong hash function detection with […]
eos
EOS (EOS) 0,764242 6,15%
aave
Aave (AAVE) 84,40 0,62%
the-graph
The Graph (GRT) 0,246182 0,99%
kusama
Kusama (KSM) 27,64 0,82%
waves
Waves (WAVES) 2,25 0,78%
dash
Dash (DASH) 28,64 1,86%
bitcoin
Bitcoin (BTC) 60.244,06 0,33%
ethereum
Ethereum (ETH) 2.940,75 0,35%
cardano
Cardano (ADA) 0,442966 0,56%
tether
Tether (USDT) 0,935560 0,08%
xrp
XRP (XRP) 0,496712 0,95%
solana
Solana (SOL) 134,71 2,20%
polkadot
Polkadot (DOT) 6,44 0,66%
usd-coin
USDC (USDC) 0,934625 0,01%
dogecoin
Dogecoin (DOGE) 0,140971 0,31%
uniswap
Uniswap (UNI) 7,31 0,86%
terra-luna
Terra Luna Classic (LUNC) 0,000107 9,64%
litecoin
Litecoin (LTC) 80,21 2,47%
chainlink
Chainlink (LINK) 13,88 0,96%
bitcoin-cash
Bitcoin Cash (BCH) 446,42 0,75%
algorand
Algorand (ALGO) 0,200469 6,01%
matic-network
Polygon (MATIC) 0,674760 1,71%
stellar
Stellar (XLM) 0,106728 0,11%
cosmos
Cosmos Hub (ATOM) 7,80 1,02%
filecoin
Filecoin (FIL) 5,59 0,11%
tron
TRON (TRX) 0,109392 2,73%
ethereum-classic
Ethereum Classic (ETC) 24,98 1,83%
dai
Dai (DAI) 0,934575 0,02%
tezos
Tezos (XTZ) 0,950514 1,18%
monero
Monero (XMR) 113,16 1,20%