Skip to main content

Module for decrypting doubleclick price confirmations

Project description

DoubleClickCrypto

Python module for decrypting doubleclick price confirmations.

Installation

pip install doubleclickcrypto

Features

The module handles decryption of price confirmations and advertising identifiers with signature checking and, for price confirmations, stale response handling.

Example usage

Look at the test cases in the source for more examples.

Price decryption

from doubleclickcrypto import DoubleClickCrypto

e_key = "skU7Ax_NL5pPAFyKdkfZjZz2-VhIN8bjj1rVFOaJ_5o="
i_key = "arO23ykdNqUQ5LEoQ0FVmPkBd7xB5CO89PDZlSjpFxo="
cipher = "YWJjMTIzZGVmNDU2Z2hpN7fhCuPemCce_6msaw"

DoubleClickCrypto.decrypt_price(cipher, e_key, i_key)
#  -> 100

# Check for stale responses
DoubleClickCrypto.decrypt_price(cipher, e_key, i_key, max_timedelta_seconds=0)
#  -> throws StaleResponseException

Advertising id decryption

from doubleclickcrypto import DoubleClickCrypto

e_key = "sIxwz7yw62yrfoLGt12lIHKuYrK_S5kLuApI2BQe7Ac="
i_key = "v3fsVcMBMMHYzRhi7SpM0sdqwzvAxM6KPTu9OtVod5I="
cipher = "5nmwvgAM0UABI0VniavN72_tyXf-QJOmQdL0tmh_fduB2go_"

DoubleClickCrypto.decrypt_ad_id(cipher, e_key, i_key)
# -> bytes([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15])

Repository

https://github.com/danielhedren/doubleclickcrypto

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

doubleclickcrypto-0.1.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

doubleclickcrypto-0.1.1-py3-none-any.whl (5.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page