-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/play integrity improvements #13
Conversation
lailabecker
commented
Aug 8, 2024
•
edited
Loading
edited
- Fixes GooglePlayIntegrityAttestationVerifier does not set verified_data #12
- Adds additional configuration options for the play integrity verifier
.github/workflows/python-tests.yml
Outdated
@@ -14,7 +14,7 @@ jobs: | |||
runs-on: ubuntu-latest | |||
strategy: | |||
matrix: | |||
python-version: [3.8] | |||
python-version: [3.11] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's try directly with Python 3.12 or did you already do that and it failed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe we should also adjust it in the Pipfile...
def __convert_signing_digest(self, hex: str): | ||
sanitized = hex.replace(':', '') | ||
digest_bytes = bytearray.fromhex(sanitized) | ||
base64Signature = base64.urlsafe_b64encode(digest_bytes).decode() | ||
return base64Signature.replace('=', '') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That could/should be static, right?