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. |
Beta Was this translation helpful? Give feedback.
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) |
Beta Was this translation helpful? Give feedback.
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. |
Beta Was this translation helpful? Give feedback.
1 reply
-
I was doing a typo. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi. I am using tools from cryptic-utils.py
sign_response
create_authorisation_header
verify_response
verify_authorisation_header
Whenever 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 byte
It would be really helpful if someone can help here to let me know if I am going wrong somewhere.
Beta Was this translation helpful? Give feedback.
All reactions