tlsv1_record.h
Go to the documentation of this file.00001
00016 #ifndef TLSV1_RECORD_H
00017 #define TLSV1_RECORD_H
00018
00019 #include "crypto.h"
00020
00021 #define TLS_MAX_WRITE_MAC_SECRET_LEN 20
00022 #define TLS_MAX_WRITE_KEY_LEN 32
00023 #define TLS_MAX_IV_LEN 16
00024 #define TLS_MAX_KEY_BLOCK_LEN (2 * (TLS_MAX_WRITE_MAC_SECRET_LEN + \
00025 TLS_MAX_WRITE_KEY_LEN + TLS_MAX_IV_LEN))
00026
00027 #define TLS_SEQ_NUM_LEN 8
00028 #define TLS_RECORD_HEADER_LEN 5
00029
00030
00031 enum {
00032 TLS_CONTENT_TYPE_CHANGE_CIPHER_SPEC = 20,
00033 TLS_CONTENT_TYPE_ALERT = 21,
00034 TLS_CONTENT_TYPE_HANDSHAKE = 22,
00035 TLS_CONTENT_TYPE_APPLICATION_DATA = 23
00036 };
00037
00038 struct tlsv1_record_layer {
00039 u8 write_mac_secret[TLS_MAX_WRITE_MAC_SECRET_LEN];
00040 u8 read_mac_secret[TLS_MAX_WRITE_MAC_SECRET_LEN];
00041 u8 write_key[TLS_MAX_WRITE_KEY_LEN];
00042 u8 read_key[TLS_MAX_WRITE_KEY_LEN];
00043 u8 write_iv[TLS_MAX_IV_LEN];
00044 u8 read_iv[TLS_MAX_IV_LEN];
00045
00046 size_t hash_size;
00047 size_t key_material_len;
00048 size_t iv_size;
00049
00050 enum crypto_hash_alg hash_alg;
00051 enum crypto_cipher_alg cipher_alg;
00052
00053 u8 write_seq_num[TLS_SEQ_NUM_LEN];
00054 u8 read_seq_num[TLS_SEQ_NUM_LEN];
00055
00056 u16 cipher_suite;
00057 u16 write_cipher_suite;
00058 u16 read_cipher_suite;
00059
00060 struct crypto_cipher *write_cbc;
00061 struct crypto_cipher *read_cbc;
00062 };
00063
00064
00065 int tlsv1_record_set_cipher_suite(struct tlsv1_record_layer *rl,
00066 u16 cipher_suite);
00067 int tlsv1_record_change_write_cipher(struct tlsv1_record_layer *rl);
00068 int tlsv1_record_change_read_cipher(struct tlsv1_record_layer *rl);
00069 int tlsv1_record_send(struct tlsv1_record_layer *rl, u8 content_type, u8 *buf,
00070 size_t buf_size, size_t payload_len, size_t *out_len);
00071 int tlsv1_record_receive(struct tlsv1_record_layer *rl,
00072 const u8 *in_data, size_t in_len,
00073 u8 *out_data, size_t *out_len, u8 *alert);
00074
00075 #endif
00076