Security
vcrypt.txt
Associated article: Visual cryptography and bit-plane complexity segmentation
Tags:
Published and unpublished source code accompanying the article by Daniel Stoleru in which he examines Bit-Plane Complexity Segmentation which lets you embed large amounts of data in images.
Visual Cryptography and Bit-Plane Complexity Segmentation by Daniel Stoleru Listing One def square(matrix, n, d): # returns a square slice of dim d from a matrix # n - square number maxX = len(matrix[0]) maxY = len(matrix[:,0]) xsquares = maxX/d ysquares = ...