|
GNU Radio's M17 Package
|
Go to the source code of this file.
Functions | |
| uint64_t | convert_bits_into_output (uint8_t *input, int len) |
| void | pack_bit_array_into_byte_array (uint8_t *input, uint8_t *output, int len) |
| void | unpack_byte_array_into_bit_array (uint8_t *input, uint8_t *output, int len) |
| void | aes_ctr_bitwise_payload_crypt (uint8_t *iv, uint8_t *key, uint8_t *payload, int type) |
| void | aes_ctr_bytewise_payload_crypt (uint8_t *iv, uint8_t *key, uint8_t *payload, int type) |
| void | aes_ofb_keystream_output (uint8_t *iv, uint8_t *key, uint8_t *output, int type, int nblocks) |
| void | aes_cfb_bytewise_payload_crypt (uint8_t *iv, uint8_t *key, uint8_t *in, uint8_t *out, int type, int nblocks, int de) |
| void | aes_cbc_bytewise_payload_crypt (uint8_t *iv, uint8_t *key, uint8_t *in, uint8_t *out, int type, int nblocks, int de) |
| void | aes_cbc_mac_generator (uint8_t *key, uint8_t *in, uint8_t *out, int type, int nblocks) |
| void | aes_ecb_bytewise_payload_crypt (uint8_t *input, uint8_t *key, uint8_t *output, int type, int de) |
| void aes_cbc_bytewise_payload_crypt | ( | uint8_t * | iv, |
| uint8_t * | key, | ||
| uint8_t * | in, | ||
| uint8_t * | out, | ||
| int | type, | ||
| int | nblocks, | ||
| int | de ) |
References aes_cbc_bytewise_payload_crypt().
Referenced by aes_cbc_bytewise_payload_crypt().
| void aes_cbc_mac_generator | ( | uint8_t * | key, |
| uint8_t * | in, | ||
| uint8_t * | out, | ||
| int | type, | ||
| int | nblocks ) |
References aes_cbc_mac_generator().
Referenced by aes_cbc_mac_generator().
| void aes_cfb_bytewise_payload_crypt | ( | uint8_t * | iv, |
| uint8_t * | key, | ||
| uint8_t * | in, | ||
| uint8_t * | out, | ||
| int | type, | ||
| int | nblocks, | ||
| int | de ) |
References aes_cfb_bytewise_payload_crypt().
Referenced by aes_cfb_bytewise_payload_crypt().
| void aes_ctr_bitwise_payload_crypt | ( | uint8_t * | iv, |
| uint8_t * | key, | ||
| uint8_t * | payload, | ||
| int | type ) |
References aes_ctr_bitwise_payload_crypt().
Referenced by aes_ctr_bitwise_payload_crypt().
| void aes_ctr_bytewise_payload_crypt | ( | uint8_t * | iv, |
| uint8_t * | key, | ||
| uint8_t * | payload, | ||
| int | type ) |
References aes_ctr_bytewise_payload_crypt().
Referenced by aes_ctr_bytewise_payload_crypt().
| void aes_ecb_bytewise_payload_crypt | ( | uint8_t * | input, |
| uint8_t * | key, | ||
| uint8_t * | output, | ||
| int | type, | ||
| int | de ) |
References aes_ecb_bytewise_payload_crypt().
Referenced by aes_ecb_bytewise_payload_crypt().
| void aes_ofb_keystream_output | ( | uint8_t * | iv, |
| uint8_t * | key, | ||
| uint8_t * | output, | ||
| int | type, | ||
| int | nblocks ) |
References aes_ofb_keystream_output().
Referenced by aes_ofb_keystream_output().
| uint64_t convert_bits_into_output | ( | uint8_t * | input, |
| int | len ) |
References convert_bits_into_output().
Referenced by convert_bits_into_output().
| void pack_bit_array_into_byte_array | ( | uint8_t * | input, |
| uint8_t * | output, | ||
| int | len ) |
References pack_bit_array_into_byte_array().
Referenced by pack_bit_array_into_byte_array().
| void unpack_byte_array_into_bit_array | ( | uint8_t * | input, |
| uint8_t * | output, | ||
| int | len ) |
References unpack_byte_array_into_bit_array().
Referenced by unpack_byte_array_into_bit_array().