-
-
ruby-rc4
... = RubyRc4.new('mysecret_key')
And encrypt any string you want:
encrypted_data = encryptor.encrypt('secret_data')
Or decrypt it:
plain_text = decryptor.encrypt(encrypted_data)
Also, you can use encrypt method destructively on the ...
-
erlang_md5crack
... The server process can now use the clients to decrypt passwords:
> dist:decrypt("word").
As always, the example is contrived. ...
Passwords must only be lowercase characters (no numbers) and the decrypt function must
be told how long the password is. ...
-
spree-offline-creditcard
... the server hosting your store. There is an excellent Firefox plugin (FireGPG) which provides a nice way to securely decrypt PGP encrypted information from a browser (where the client machine can hold the private key.)
Configuration
-------------
...
-
filelike
... an arbitrary translation
function (e.g. compression, encryption, ...)
:Decrypt: on-the-fly reading and writing to an ... is designed to achieve, here's
how the Decrypt wrapper can be used to transparently access an ...
-
dataencryptionstandard
... with
> javac -d build src/*.java
Usage
=======
To encrypt an eight-byte message, use the command
> bin/encrypt.sh HereHEAR
c469c8c7402d42d9
To decrypt an eight-byte hex enco
ded message, use the command
> bin/decrypt.sh c469c8c7402d42d9
HereHEAR
-
crackup
... at the remote location (including the index) are compressed using bzip2 compression and encrypted using GnuPG. GnuPG can uncompress and decrypt them if the proper passphrase is provided. If encryption is not used, the files (including the index) are ...
-
nsca
... nsca.cfg and send_nsca.cfg files! If you use a
different password to encrypt the data than you do to
decrypt it, the nsca daemon will reject the data you send
it.
Security
--------
There are some security implications with allowing ...
-
foxmarks
... to Foxmarks.
When you set up Foxmarks on another browser, you'll have to supply the PIN in order to pull down and decrypt
your synced passwords. If you ever forget your PIN, you can go to Foxmarks' settings in your browser and reset
the value there, but ...
-
encryptor
... situation where some of their data will not decrypt. A new option is available in Encryptor 3.0. ... to encrypt', key: secret_key, iv: iv)
decrypted_value = Encryptor.decrypt(encrypted_value, key: secret_key, iv: iv)
```
#### Options
**Defaults:**
```ruby ...
-
attr_encrypted
... dump_method: 'dump',
load_method: 'load',
encryptor: Encryptor,
encrypt_method: 'encrypt',
decrypt_method: 'decrypt',
mode: :per_attribute_iv,
algorithm: 'aes-256-gcm',
allow_empty_value: false
...
-