Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niedbalski/python-bdpcrypt
Python written utility for Encrypt and Decrypt Sony BDP images.
https://github.com/niedbalski/python-bdpcrypt
Last synced: about 1 month ago
JSON representation
Python written utility for Encrypt and Decrypt Sony BDP images.
- Host: GitHub
- URL: https://github.com/niedbalski/python-bdpcrypt
- Owner: niedbalski
- Created: 2011-09-22T07:12:37.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-10-03T15:28:37.000Z (over 12 years ago)
- Last Synced: 2024-10-15T08:32:59.203Z (3 months ago)
- Language: Python
- Homepage:
- Size: 102 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
BDPCrypt
=======Encode/Decode Sony(TM) blueray images.
From console:
=============* Install the package from pypi
$ pip install bdpcrypt
* Decrypt:
$ bdpcrypt -s FW-CRYPTED.BIN -t FW-DECRYPTED.IMG -d true
* Encrypt:
$ bdpcrypt -s FW-DECRYPTED.IMG -t FW-ENCRYPTED.BIN -e true
From python
===============```python
from bdpcrypt import BDPCrypter
crypter = BDPCrypter(options.source, options.destination)
crypter.crypt(options.encrypt)
```