@thedevs · Post #1229 · 19.09.2018 г., 17:22
An Intensive Introduction to Cryptography. #article#tutorial#security#cryptography @thedevs https://kutt.it/aWOpN6
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #205 · 22 јан.
Как работает функция reload()? Эта функция нужна для того, чтобы перезагрузить изменившийся код из py-файла без рестарта интерпретатора. Дело в том, что любой импортированный модуль при повторном импорте не будет перечитывать файл. Функция импорта вернёт уже загруженный в память объект модуля. Чтобы обновить код, нужно либо перезапустить всю программу, либо использовать функцию reload() from importlib import reload reload(my_module) 🔸 Функция reload() принимает в качестве аргумента только объект модуля или пакета. Она не может перезагрузить класс или функцию. Только весь файл целиком! 🔸 Перезагрузка пакета перезагрузит только его файл __init__.py, если он есть. Но не вложенные модули. 🔸Она не может перезагрузить ранее не импортированный модуль. 🔸При вызове функция reload() перечитывает и перекомпилирует код в файле, создавая новые объекты. После создания новых объектов перезаписывается ранее созданный неймспейс этого модуля. Это значит, что если где-то этот модуль импортирован через import и обращение к атрибутам происходит через неймспейс (имя) модуля, то такие атрибуты обновятся. Если какие-либо объекты из этого модуля импортированы через from то они будут ссылаться на старые объекты. Напишем простой модуль # mymodule.py x = 1 Теперь импортируем модуль и отдельно переменную х из модуля >>> import mymodule >>> from mymodule import x >>> print(mymodule.x) 1 >>> print(x) 1 Не перезапуская интерпретатор вносим изменения в модуль # mymodule.py x = 2 Делаем перезагрузку модуля и проверяем х ещё раз >>> reload(mymodule) >>> print(mymodule.x) 2 >>> print(x) 1 То же самое будет если присвоить любой объект переменной (даже словарь или список) Повторный импорт обновляет значение >>> from mymodule import x >>> print(x) 2 🔸Созданные инстансы классов не обновятся после перезагрузки модуля. Их придётся пересоздать. #tricks#basic
Пребарај: #cryptography
@thedevs · Post #1229 · 19.09.2018 г., 17:22
An Intensive Introduction to Cryptography. #article#tutorial#security#cryptography @thedevs https://kutt.it/aWOpN6
@interesting_planet_facts · Post #1106 · 06.12.2025 г., 22:11
🌎 The ancient Voynich Manuscript, kept at Yale University, is a 240-page illustrated book written in an unknown script and language. Despite decades of research, expert codebreakers and linguists have failed to decipher its text or explain its purpose. Radiocarbon dating places its creation in the early 15th century. ✨ #history⚡#cryptography⚡#manuscripts 👉subscribe Interesting Planet 👉more Channels
@venturevillagewall · Post #4160 · 15.02.2025 г., 13:00
Funding Round Highlights: February 2025 Check out the latest funding rounds! 1. Antithesis - $30M (Feb 13, 2025) - Bug detection platform. 2. QuSecure - $28M (Jan 22, 2025) - Post-quantum cryptography solutions. 3. Plasma - $20.5M (Feb 13, 2025) - Bitcoin-secured payment rails. 4. Circuit - $17M (Feb 13, 2025) - Green electric mobility solutions. 5. T-Max - $15.5M (Feb 13, 2025) - Private lending services. 6. Somatic - $13.7M (Feb 12, 2025) - Commercial bathroom cleaning. 7. Aijie Boya - $13.68M (Feb 12, 2025) - Biotech company. 8. Fyteko - $13.54M (Feb 13, 2025) - Sustainable agriculture technology. 9. Phase - $13M (Feb 13, 2025) - Animation tools for designers. 10. Tofu - $12M (Feb 13, 2025) - AI marketing assistant for B2B. #Funding#Investments#Cryptography#Bitcoin#Mobility#Sustainable#Tech#AI#VC
@kejiqu · Post #4272 · 19.03.2026 г., 01:39
2026 图灵奖授予量子密码学发明者 计算机协会 (Association for Computing Machinery) 于周三宣布,Charles Bennett 博士和 Gilles Brassard 博士因其在量子密码学及相关技术方面的开创性工作而共同荣获 2026 年图灵奖。该奖项通常被称为计算机领域的诺贝尔奖,奖金为 100 万美元。两位科学家于 1983 年发表研究,证明了量子地铁票无法伪造,并于 1984 年提出了 BB84 系统,该系统利用光子创建加密密钥,通过量子力学原理实现安全加密。Slashdot 🏷#Turing#Award#Quantum#Cryptography#BB84 📢频道👥群组📝投稿
@CryptoM · Post #65220 · 12.04.2026 г., 04:08
🚀 Google Quantum AI Reduces Resources Needed to Break Bitcoin Signatures Google Quantum AI research has significantly reduced the estimated resources required to break Bitcoin's ECDSA signatures by approximately 20 times. According to NS3.AI, this advancement places the theoretical threshold near 500,000 physical qubits. The primary risk is associated with transaction signing and addresses with exposed public keys, rather than Bitcoin mining or the entire blockchain. #Google#QuantumAI#Bitcoin#ECDSA#Cryptography#Qubits#Cybersecurity#Blockchain#BTC
@githubtrending · Post #14900 · 02.07.2025 г., 14:30
#c_lang#cryptography#decryption#encryption#openssl#ssl#tls OpenSSL is a free, open-source toolkit that helps secure data by using strong encryption methods like TLS, SSL, and QUIC protocols. It includes libraries for cryptography and a command-line tool to create keys, certificates, encrypt data, and test security. OpenSSL is widely trusted and used by many software and websites to protect sensitive information during transmission, ensuring privacy and data integrity. It works on many operating systems and is regularly updated by a global community. Using OpenSSL helps you build secure applications and protect communications from cyber threats easily and reliably[1][3][5]. https://github.com/openssl/openssl
@CryptoM · Post #65040 · 10.04.2026 г., 15:26
🚀 Quantum Threats Are Real but Not Immediate, Experts Say Quantum computing poses a genuine threat to current cryptographic systems, but it is not an immediate concern. According to PANews, understanding which cryptographic components will be affected and how the industry plans to transition is crucial. Experts emphasize the importance of identifying vulnerable areas and preparing for a gradual migration to quantum-resistant technologies. The focus should be on strategic planning and readiness to ensure security in the face of future quantum advancements. #QuantumComputing#Cryptography#CyberSecurity#QuantumThreats#QuantumResistant#TechPlanning#FutureTechnology
@venturevillagewall · Post #3584 · 20.12.2024 г., 09:34
$300M Funding for SandboxAQ SandboxAQ has raised $300M as of December 18, 2024. The company focuses on integrating AI and advanced computing to tackle significant societal challenges, offering technologies such as AI simulation, cryptography management for cybersecurity, and AI sensing for global organizations. 🔗Learn more #SandboxAQ#Funding#AI#Cybersecurity#Cryptography#AIsimulation#AdvancedComputing#SocietalChallenges#Technology#GlobalOrganizations