MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / setIV

Method setIV

thirdparty/pydes/pyDes.py:757–761  ·  view source on GitHub ↗

Will set the Initial Value, used in conjunction with CBC mode

(self, IV)

Source from the content-addressed store, hash-verified

755 key.setPadMode(mode)
756
757 def setIV(self, IV):
758 """Will set the Initial Value, used in conjunction with CBC mode"""
759 _baseDes.setIV(self, IV)
760 for key in (self.__key1, self.__key2, self.__key3):
761 key.setIV(IV)
762
763 def encrypt(self, data, pad=None, padmode=None):
764 """encrypt(data, [pad], [padmode]) -> bytes

Callers

nothing calls this directly

Calls 1

setIVMethod · 0.45

Tested by

no test coverage detected