Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • AES_256_Encryption:计数器模式下的AES 256位加密 AES_256_加密 带有计数器模式的AES 256位加密。 所有3个Python文件都使用AES.MODE_CTR 。 decrypt.py使用IV和一个16字节的密钥(无填充)。 decrypt_two.py使用IV和密 ...
  • dotfiles:我的个人配置文件和脚本。 用yadm管理。 支持MacOS,Ubuntu和WSL ... amp;& yadm clone --bootstrap https://github.com/Mellbourn/dotfiles.git && sudo .config/yadm/bootstrap-sudo && yadm decrypt 适用于Linux的Windows子系统 Enable-WindowsOptionalFeature - Online - FeatureName Microsoft - Windows - Subsystem - Linux
  • nanite ... 'identity': Identity associated with serialized messages # - 'cert': Certificate used to sign serialized messages and # decrypt encrypted messages # - 'key': Private key corresponding to 'cert' # - 'store': ...
  • crypt--xxtea ... new('super secret key') plaintext = 'some text that needs to be encrypted' cyphertext = key.encrypt(plaintext) key.decrypt(cyphertext) == plaintext == LICENSE: (The MIT License) Copyright (c) 2008 Jeff Smick Permission is hereby granted, free of ...
  • mozilla-password-tool ... . USAGE ==== This tool allows you to view the passwords stored by Mozilla/Firefox. It also allows you to encrypt/decrypt the password store (so that the master password is required/not required for access) INSTALLATION ============ If you have pyrex (< ...
  • lucifer ... plugin to transparently encrypt attributes = lucifer Lucifer is Rails plugin which utilizes the ezcrypto gem to encrypt/decrypt database columns transparently. Why is it called Lucifer? http://en.wikipedia.org/wiki/Lucifer_(cipher) == Installation ...
  • ezcrypto ... encryption and decryption of strings. There are encrypt/decrypt pairs for normal binary use as well as ... methods: @encrypted=@key.encrypt("clear text") @decrypted=@key.decrypt(@encrypted) assert "clear text", @decrypted ==== Base64 encoded use ...
  • encrypted_strings ... =\n" >> crypted_password.class => String >> crypted_password == 'shhhh' => true >> password = crypted_password.decrypt => "shhhh" === Asymmetric encryption >> password = 'shhhh' => "shhhh" >> crypted_password = password.encrypt(: ...
  • aqtoolkit ... . For an example of its usage, look at @example.m@. This file implements a command-line utility which can encrypt/decrypt data to/from files or standard input/output. h3. Extensions A collection of small categories on standard FoundationKit classes. * ...
  • ruby-des ... is completely secure against eavesdropping (if it were still 1997). To decrypt an encrypted data block, just build a new `RubyDES::Ctx ... run the DES with the key schedule reversed. decrypted_data = un_des.decrypt You can then check to see if it all ...