Home | History | Annotate | Download | only in x11vnc

Lines Matching refs:ivec

280 #define IVEC 16
284 static int ivec_size = IVEC;
706 unsigned char *ivec = ivec_real;
755 ivec = NULL;
766 RAND_bytes(ivec, ivec_size);
770 memcpy(buf+salt_size, ivec, ivec_size);
801 "and ivec: n=%d\n", prog, n);
813 memcpy(ivec, buf+salt_size, ivec_size);
859 keydata_len, 1, keystr, ivec);
861 EVP_CipherInit_ex(ctx, Cipher, NULL, keystr, ivec,
888 * XXX N.B.: DSM plugin had count=0, and overwrote ivec
902 /* "normal" mode, don't overwrite ivec. */
910 * clobbers the ivec we set up above! Under
911 * noultra we overwrite ivec only if ivec_size=0.
913 * SecureVNC also goes through here. in_salt and ivec are NULL.
914 * And ivec is NULL below in the EVP_CipherInit_ex() call.
917 keydata_len, 1, keystr, ivec);
932 EVP_CipherInit_ex(ctx, Cipher, NULL, keystr, ivec, encrypt);
985 /* first time, copy the salt and ivec to out[] for sending */