#ad-mob #advertising #callback #verifying #openssl #requests #ssv

rust_admob_ssv

A rust implementation for verifying admob ssv callback requests using openssl

1 unstable release

0.1.0 May 8, 2020

#6 in #ad-mob

Download history 85/week @ 2023-12-06 2/week @ 2024-01-10 2/week @ 2024-01-17 2/week @ 2024-02-07 9/week @ 2024-02-14 24/week @ 2024-02-21 27/week @ 2024-02-28 39/week @ 2024-03-06 38/week @ 2024-03-13 25/week @ 2024-03-20

130 downloads per month

Apache-2.0

9KB
74 lines

Rust AdMob SSV Validation

This is a library for verifying a callback request (SSV) from AdMob. Please refer to the official documentation for more information.

It only does the verification process using openssl. It requires you to request the keys from the AdMob key server insert them into a Hashmap<u64, String> and hand it over to the verifciation function.

How to use

This library only has one function verify_ssv_callback. It takes two parameters:

  • query_string: String: The full query String including signature and key_id Documentation
  • public_keys: Hashmap<u64, String>: A HashMap of all public keys received from the AdMob key server

It returns either Ok(bool) if the verification was successful/unsuccessful or not or Err(String) when encountering an error during the whole validation process.

Dependencies

~3.5MB
~79K SLoC