Replies: 4 comments 1 reply
|
The UKID, subscriber_id, public/private key are the ones shared in staging on_subscribe service and my subscriber_id comes when I do a lookup too. |
0 replies
|
This is class ONDCSettings(SingletonModel):
subscriber_id = models.CharField(max_length=64, null=True, blank=True)
subscriber_url = models.URLField(null=True, blank=True)
unique_key_id = models.CharField(max_length=64, null=True, blank=True)
signing_public_key = models.CharField(max_length=128, null=True, blank=True)
signing_private_key = models.CharField(max_length=128, null=True, blank=True)
encryption_public_key = models.CharField(max_length=128, null=True, blank=True)
encryption_private_key = models.CharField(max_length=128, null=True, blank=True) |
0 replies
|
Hey Chirag it seems that you are doing your own implementation, if their is some issue with utility that I can help with do let me know. |
1 reply
|
I was doing a typo. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi. I am using tools from cryptic-utils.py
sign_responsecreate_authorisation_headerverify_responseverify_authorisation_headerWhenever I trigger the following set of code:
I always end up with the following error:
'utf-8' codec can't decode byte 0xec in position 2: invalid continuation byteIt would be really helpful if someone can help here to let me know if I am going wrong somewhere.
All reactions