Searched defs:iv (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/
H A Dcbc.h35 * @v iv Initialisation vector
39 static inline void cbc_setiv ( void *ctx __unused, const void *iv, argument
42 memcpy ( cbc_ctx, iv, raw_cipher->blocksize );
73 static void _cbc_name ## _setiv ( void *ctx, const void *iv ) { \
75 cbc_setiv ( &_cbc_name ## _ctx->raw_ctx, iv, \
H A Dwpa.h138 u8 iv[16]; member in struct:eapol_key_pkt
393 * @v iv Initialisation vector for encryption, 16 bytes
402 int ( * decrypt ) ( const void *kek, const void *iv, void *msg,
/vbox/src/VBox/Devices/PC/ipxe/src/tests/
H A Dcbc_test.c42 * @v iv Initialisation vector
49 size_t key_len, const void *iv, const void *plaintext,
58 cipher_setiv ( cipher, ctx, iv );
73 * @v iv Initialisation vector
80 size_t key_len, const void *iv, const void *ciphertext,
89 cipher_setiv ( cipher, ctx, iv );
48 cbc_test_encrypt( struct cipher_algorithm *cipher, const void *key, size_t key_len, const void *iv, const void *plaintext, const void *expected_ciphertext, size_t len ) argument
79 cbc_test_decrypt( struct cipher_algorithm *cipher, const void *key, size_t key_len, const void *iv, const void *ciphertext, const void *expected_plaintext, size_t len ) argument
H A Daes_cbc_test.c60 const void *iv; member in struct:aes_cbc_test
92 .iv = name ## _iv, \
112 (test)->iv, (test)->plaintext, \
115 (test)->iv, (test)->ciphertext, \
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/
H A Daxtls_aes.c47 void *iv; local
63 iv = &aes_ctx->axtls_ctx.iv;
65 AES_set_key ( &aes_ctx->axtls_ctx, key, iv, mode );
76 * @v iv Initialisation vector
78 static void aes_setiv ( void *ctx __unused, const void *iv __unused ) {
/vbox/src/VBox/Devices/PC/ipxe/src/net/80211/
H A Dwep.c126 u32 iv, icv; local
138 iv = random() & 0xffffff; /* IV in bottom 3 bytes, top byte = KID = 0 */
139 memcpy ( iob_put ( eiob, WEP_HEADER_LEN ), &iv, WEP_HEADER_LEN ); local
140 memcpy ( ctx->key, &iv, WEP_IV_LEN );
175 u32 iv, icv, crc; local
186 memcpy ( &iv, eiob->data + hdrlen, 4 );
187 iv &= 0xffffff; /* ignore key ID byte */
188 memcpy ( ctx->key, &iv, WEP_IV_LEN );
H A Dwpa_tkip.c562 * @v iv Initialisation vector, 16 bytes
569 static int tkip_kie_decrypt ( const void *kek, const void *iv, argument
573 memcpy ( key, iv, 16 );
/vbox/src/VBox/Devices/PC/ipxe/src/crypto/axtls/
H A Daes.c176 * Set up AES with the key/iv and cipher size.
179 const uint8_t *iv, AES_MODE mode)
246 /* copy the iv across */
247 memcpy(ctx->iv, iv, 16);
275 uint32_t tin[4], tout[4], iv[4]; local
277 memcpy(iv, ctx->iv, AES_IV_SIZE);
279 tout[i] = ntohl(iv[i]);
304 iv[
178 AES_set_key(AES_CTX *ctx, const uint8_t *key, const uint8_t *iv, AES_MODE mode) argument
314 uint32_t tin[4], xor[4], tout[4], data[4], iv[4]; local
[all...]
H A Dcrypto.h75 uint8_t iv[AES_IV_SIZE]; member in struct:aes_key_st
85 const uint8_t *iv, AES_MODE mode);
/vbox/src/VBox/GuestHost/OpenGL/packer/
H A Dpack_client.c144 GLint iv[4]; local
150 case 3: iv[2] = iPtr[2];
151 case 2: iv[1] = iPtr[1];
153 iv[0] = iPtr[0];
154 crPackVertexAttrib4ivARB(attr, iv);
/vbox/src/VBox/GuestHost/OpenGL/state_tracker/
H A Dstate_lists.c935 GLint iv[2]; local
937 iv[0] = g->eval.un2D;
938 iv[1] = g->eval.vn2D;
939 diff_api.GetIntegerv(GL_MAP1_GRID_SEGMENTS, &iv[0]);
940 CRSTATE_SET_CAP(eval.un2D, iv[0], "%i");
941 CRSTATE_SET_CAP(eval.vn2D, iv[1], "%i");
/vbox/src/VBox/Frontends/VirtualBox/src/settings/machine/
H A DUIMachineSettingsSystem.cpp162 QAbstractItemView *iv = qobject_cast <QAbstractItemView*> (mTwBootOrder); local
163 iv->model()->removeRows(0, iv->model()->rowCount());
/vbox/src/VBox/Devices/PC/ipxe/src/net/
H A Dtls.c1695 void *iv; local
1711 iv = plaintext;
1712 content = ( iv + iv_len );
1717 tls_generate_random ( tls, iv, iv_len );
1871 void *iv; local
1901 iv = plaintext;
1902 content = ( iv + iv_len );
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxws-rt.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/services/ com/ com/sun/ com/sun/xml/ ...

Completed in 55 milliseconds