I have following table
CREATE TABLE User (
email sysname NOT NULL,
sign varbinary(256) NULL
);
sysname in SQL Server 2005/2008 has the same size as nvarchar(128) - which I'm assuming is 256 bytes.
I'm using SignByCert(..., email, ...) function to produce a signature of 'email' column.
Can I make any assumptions about the max size of [sign] column ?