Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

hmac in python

# Python 3 code to demonstrate the working of hmac module.
  
import hmac
import hashlib
  
# creating new hmac object using sha1 hash algorithm
digest_maker = hmac.new(b'secret-key', b'msg', hashlib.sha1)
  
# print the Hexdigest of the bytes passed to update
print ("Hexdigest: " + digest_maker.hexdigest())
  
# call update to update msg
digest_maker.update(b'another msg')
  
# print the Hexdigest of the bytes passed to update
print ("Hexdigest after update: " + digest_maker.hexdigest())
  
print ("Digest size: " + str(digest_maker.digest_size) + " bytes")
print ("Block size: " + str(digest_maker.block_size) + " bytes")
print ("Canonical name: " + digest_maker.name)
  
# print the digest of the bytes passed to update
print ("Digest: ", end =" ")
print (digest_maker.digest())
  
# create a copy of the hmac object
digest_clone = digest_maker.copy()
print ("Hexdigest of clone: " + digest_clone.hexdigest())
Comment

PREVIOUS NEXT
Code Example
Python :: printing python dictionary values 
Python :: get all files in directory python 
Python :: python get current month 
Python :: while loop user input python 
Python :: python copy dataframe 
Python :: python make a list of odd numbers 
Python :: does np.random.randint have a seed 
Python :: multiply all values in column pandas 
Python :: pytest loop 
Python :: python solve equation with two variables 
Python :: initialize dictionary with empty lists 
Python :: create a role with discord.py 
Python :: join two dictionaries python 
Python :: how to find if user input is lower case or upper case in python 
Python :: python extract text from image 
Python :: use datetime python to get runtime 
Python :: pandas string to number 
Python :: replace number with string python 
Python :: python turn true or false into 0 or 1 
Python :: password text in entry in tkinter 
Python :: how to 404 custom page not found in django 
Python :: Efficiently count zero elements in numpy array? 
Python :: dataframe column data type 
Python :: python mysqlclient not installing 
Python :: descending python dataframe df 
Python :: convert list to string 
Python :: difference between compiler and interpreter 
Python :: pandas dataframe column names 
Python :: python remove nan rows 
Python :: python get response from url 
ADD CONTENT
Topic
Content
Source link
Name
4+5 =