Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
~459 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags
python x 2
cryptography x 1
2 Posted Topics
For a given digitally signed file I need to extract the 1024 bit(RSA) public sign key that is shown in the attachment. Can someone tell me how to do that through python. Is there a specific python module that can extract the digital signature details? If that is not possible …
Try with this: [CODE]#!/usr/bin/env python-u import math option = 'y' while (option == 'y'): op = int(input("Please enter 1: for converting Fahrenheit -> Celsius , 2: for converting Celsius -> Fahrenheit:: ")) num = int(input("Please enter the temperature:: ")) if op == 1: convert = 5.0 / 9.0 * (num …
The End.
arindam_ron