Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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)
```