1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
|
/*
* Copyright (C) 2001-2012 Free Software Foundation, Inc.
* Copyright (C) 2017 Red Hat, Inc.
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* The GnuTLS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>
*
*/
/* Functions that are supposed to run after the handshake procedure is
* finished. These functions activate the established security parameters.
*/
#include "gnutls_int.h"
#include "constate.h"
#include "errors.h"
#include "fips.h"
#include "kx.h"
#include "algorithms.h"
#include "num.h"
#include "datum.h"
#include "state.h"
#include "hello_ext.h"
#include "buffers.h"
#include "dtls.h"
#include "secrets.h"
#include "handshake.h"
#include "crypto-api.h"
#include "locks.h"
static const char keyexp[] = "key expansion";
static const int keyexp_length = sizeof(keyexp) - 1;
static int _tls13_init_record_state(gnutls_cipher_algorithm_t algo,
record_state_st *state);
/* This function is to be called after handshake, when master_secret,
* client_random and server_random have been initialized.
* This function creates the keys and stores them into pending session.
* (session->cipher_specs)
*/
static int _gnutls_set_keys(gnutls_session_t session,
record_parameters_st *params, unsigned hash_size,
unsigned IV_size, unsigned key_size)
{
uint8_t rnd[2 * GNUTLS_RANDOM_SIZE];
int pos, ret;
int block_size;
char buf[4 * MAX_HASH_SIZE + 4 * MAX_CIPHER_KEY_SIZE +
4 * MAX_CIPHER_BLOCK_SIZE];
/* avoid using malloc */
uint8_t key_block[2 * MAX_HASH_SIZE + 2 * MAX_CIPHER_KEY_SIZE +
2 * MAX_CIPHER_BLOCK_SIZE];
record_state_st *client_write, *server_write;
if (session->security_parameters.entity == GNUTLS_CLIENT) {
client_write = ¶ms->write;
server_write = ¶ms->read;
} else {
client_write = ¶ms->read;
server_write = ¶ms->write;
}
block_size = 2 * hash_size + 2 * key_size;
block_size += 2 * IV_size;
memcpy(rnd, session->security_parameters.server_random,
GNUTLS_RANDOM_SIZE);
memcpy(&rnd[GNUTLS_RANDOM_SIZE],
session->security_parameters.client_random, GNUTLS_RANDOM_SIZE);
_gnutls_memory_mark_defined(session->security_parameters.master_secret,
GNUTLS_MASTER_SIZE);
#ifdef ENABLE_SSL3
if (get_num_version(session) == GNUTLS_SSL3) { /* SSL 3 */
ret = _gnutls_ssl3_generate_random(
session->security_parameters.master_secret,
GNUTLS_MASTER_SIZE, rnd, 2 * GNUTLS_RANDOM_SIZE,
block_size, key_block);
} else /* TLS 1.0+ */
#endif
ret = _gnutls_PRF(session,
session->security_parameters.master_secret,
GNUTLS_MASTER_SIZE, keyexp, keyexp_length,
rnd, 2 * GNUTLS_RANDOM_SIZE, block_size,
key_block);
if (ret < 0) {
_gnutls_memory_mark_undefined(
session->security_parameters.master_secret,
GNUTLS_MASTER_SIZE);
return gnutls_assert_val(ret);
}
_gnutls_hard_log("INT: KEY BLOCK[%d]: %s\n", block_size,
_gnutls_bin2hex(key_block, block_size, buf,
sizeof(buf), NULL));
pos = 0;
if (hash_size > 0) {
assert(hash_size <= sizeof(client_write->mac_key));
client_write->mac_key_size = hash_size;
memcpy(client_write->mac_key, &key_block[pos], hash_size);
pos += hash_size;
server_write->mac_key_size = hash_size;
memcpy(server_write->mac_key, &key_block[pos], hash_size);
pos += hash_size;
_gnutls_hard_log("INT: CLIENT MAC KEY [%d]: %s\n",
client_write->mac_key_size,
_gnutls_bin2hex(client_write->mac_key,
hash_size, buf, sizeof(buf),
NULL));
_gnutls_hard_log("INT: SERVER MAC KEY [%d]: %s\n",
server_write->mac_key_size,
_gnutls_bin2hex(server_write->mac_key,
hash_size, buf, sizeof(buf),
NULL));
}
if (key_size > 0) {
assert(key_size <= sizeof(client_write->key));
client_write->key_size = key_size;
memcpy(client_write->key, &key_block[pos], key_size);
pos += key_size;
server_write->key_size = key_size;
memcpy(server_write->key, &key_block[pos], key_size);
pos += key_size;
_gnutls_hard_log("INT: CLIENT WRITE KEY [%d]: %s\n", key_size,
_gnutls_bin2hex(client_write->key, key_size,
buf, sizeof(buf), NULL));
_gnutls_hard_log("INT: SERVER WRITE KEY [%d]: %s\n", key_size,
_gnutls_bin2hex(server_write->key, key_size,
buf, sizeof(buf), NULL));
}
/* IV generation in export and non export ciphers.
*/
if (IV_size > 0) {
assert(IV_size <= sizeof(client_write->iv));
client_write->iv_size = IV_size;
memcpy(client_write->iv, &key_block[pos], IV_size);
pos += IV_size;
server_write->iv_size = IV_size;
memcpy(server_write->iv, &key_block[pos], IV_size);
_gnutls_hard_log("INT: CLIENT WRITE IV [%d]: %s\n",
client_write->iv_size,
_gnutls_bin2hex(client_write->iv,
client_write->iv_size, buf,
sizeof(buf), NULL));
_gnutls_hard_log("INT: SERVER WRITE IV [%d]: %s\n",
server_write->iv_size,
_gnutls_bin2hex(server_write->iv,
server_write->iv_size, buf,
sizeof(buf), NULL));
}
return 0;
}
static int _tls13_update_keys(gnutls_session_t session, hs_stage_t stage,
record_parameters_st *params, unsigned iv_size,
unsigned key_size)
{
uint8_t key_block[MAX_CIPHER_KEY_SIZE];
uint8_t iv_block[MAX_CIPHER_IV_SIZE];
char buf[65];
record_state_st *upd_state;
record_parameters_st *prev = NULL;
int ret;
/* generate new keys for direction needed and copy old from previous epoch */
if (stage == STAGE_UPD_OURS) {
upd_state = ¶ms->write;
ret = _gnutls_epoch_get(session, EPOCH_READ_CURRENT, &prev);
if (ret < 0)
return gnutls_assert_val(ret);
assert(prev != NULL);
params->read.sequence_number = prev->read.sequence_number;
params->read.key_size = prev->read.key_size;
memcpy(params->read.key, prev->read.key, prev->read.key_size);
_gnutls_hard_log(
"INT: READ KEY [%d]: %s\n", params->read.key_size,
_gnutls_bin2hex(params->read.key, params->read.key_size,
buf, sizeof(buf), NULL));
params->read.iv_size = prev->read.iv_size;
memcpy(params->read.iv, prev->read.iv, prev->read.key_size);
_gnutls_hard_log(
"INT: READ IV [%d]: %s\n", params->read.iv_size,
_gnutls_bin2hex(params->read.iv, params->read.iv_size,
buf, sizeof(buf), NULL));
} else {
upd_state = ¶ms->read;
ret = _gnutls_epoch_get(session, EPOCH_WRITE_CURRENT, &prev);
if (ret < 0)
return gnutls_assert_val(ret);
assert(prev != NULL);
params->write.sequence_number = prev->write.sequence_number;
params->write.key_size = prev->write.key_size;
memcpy(params->write.key, prev->write.key,
prev->write.key_size);
_gnutls_hard_log("INT: WRITE KEY [%d]: %s\n",
params->write.key_size,
_gnutls_bin2hex(params->write.key,
params->write.key_size, buf,
sizeof(buf), NULL));
params->write.iv_size = prev->write.iv_size;
memcpy(params->write.iv, prev->write.iv, prev->write.iv_size);
_gnutls_hard_log(
"INT: WRITE IV [%d]: %s\n", params->write.iv_size,
_gnutls_bin2hex(params->write.iv, params->write.iv_size,
buf, sizeof(buf), NULL));
}
if ((session->security_parameters.entity == GNUTLS_CLIENT &&
stage == STAGE_UPD_OURS) ||
(session->security_parameters.entity == GNUTLS_SERVER &&
stage == STAGE_UPD_PEERS)) {
/* client keys */
ret = _tls13_expand_secret(
session, APPLICATION_TRAFFIC_UPDATE,
sizeof(APPLICATION_TRAFFIC_UPDATE) - 1, NULL, 0,
session->key.proto.tls13.ap_ckey,
session->security_parameters.prf->output_size,
session->key.proto.tls13.ap_ckey);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "key", 3, NULL, 0,
session->key.proto.tls13.ap_ckey,
key_size, key_block);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "iv", 2, NULL, 0,
session->key.proto.tls13.ap_ckey,
iv_size, iv_block);
if (ret < 0)
return gnutls_assert_val(ret);
} else {
ret = _tls13_expand_secret(
session, APPLICATION_TRAFFIC_UPDATE,
sizeof(APPLICATION_TRAFFIC_UPDATE) - 1, NULL, 0,
session->key.proto.tls13.ap_skey,
session->security_parameters.prf->output_size,
session->key.proto.tls13.ap_skey);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "key", 3, NULL, 0,
session->key.proto.tls13.ap_skey,
key_size, key_block);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "iv", 2, NULL, 0,
session->key.proto.tls13.ap_skey,
iv_size, iv_block);
if (ret < 0)
return gnutls_assert_val(ret);
}
upd_state->mac_key_size = 0;
assert(key_size <= sizeof(upd_state->key));
memcpy(upd_state->key, key_block, key_size);
upd_state->key_size = key_size;
_gnutls_hard_log(
"INT: NEW %s KEY [%d]: %s\n",
(upd_state == ¶ms->read) ? "READ" : "WRITE", key_size,
_gnutls_bin2hex(key_block, key_size, buf, sizeof(buf), NULL));
if (iv_size > 0) {
assert(iv_size <= sizeof(upd_state->iv));
memcpy(upd_state->iv, iv_block, iv_size);
upd_state->iv_size = iv_size;
_gnutls_hard_log("INT: NEW %s IV [%d]: %s\n",
(upd_state == ¶ms->read) ? "READ" :
"WRITE",
iv_size,
_gnutls_bin2hex(iv_block, iv_size, buf,
sizeof(buf), NULL));
}
return 0;
}
static int _tls13_set_early_keys(gnutls_session_t session,
record_parameters_st *params, unsigned iv_size,
unsigned key_size)
{
uint8_t key_block[MAX_CIPHER_KEY_SIZE];
uint8_t iv_block[MAX_CIPHER_IV_SIZE];
char buf[65];
record_state_st *early_state;
int ret;
if (session->security_parameters.entity == GNUTLS_CLIENT &&
!(session->internals.hsk_flags & HSK_TLS13_TICKET_SENT)) {
return GNUTLS_E_INVALID_REQUEST;
}
ret = _tls13_expand_secret2(
session->internals.resumed_security_parameters.prf, "key", 3,
NULL, 0, session->key.proto.tls13.e_ckey, key_size, key_block);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret2(
session->internals.resumed_security_parameters.prf, "iv", 2,
NULL, 0, session->key.proto.tls13.e_ckey, iv_size, iv_block);
if (ret < 0)
return gnutls_assert_val(ret);
if (session->security_parameters.entity == GNUTLS_CLIENT) {
early_state = ¶ms->write;
} else {
early_state = ¶ms->read;
}
early_state->mac_key_size = 0;
assert(key_size <= sizeof(early_state->key));
memcpy(early_state->key, key_block, key_size);
early_state->key_size = key_size;
_gnutls_hard_log("INT: EARLY KEY [%d]: %s\n", key_size,
_gnutls_bin2hex(key_block, key_size, buf, sizeof(buf),
NULL));
if (iv_size > 0) {
assert(iv_size <= sizeof(early_state->iv));
memcpy(early_state->iv, iv_block, iv_size);
early_state->iv_size = iv_size;
_gnutls_hard_log("INT: EARLY IV [%d]: %s\n", iv_size,
_gnutls_bin2hex(iv_block, iv_size, buf,
sizeof(buf), NULL));
}
return 0;
}
static int _tls13_set_keys(gnutls_session_t session, hs_stage_t stage,
record_parameters_st *params, unsigned iv_size,
unsigned key_size)
{
uint8_t ckey_block[MAX_CIPHER_KEY_SIZE];
uint8_t civ_block[MAX_CIPHER_IV_SIZE];
uint8_t skey_block[MAX_CIPHER_KEY_SIZE];
uint8_t siv_block[MAX_CIPHER_IV_SIZE];
char buf[65];
record_state_st *client_write, *server_write;
const char *label;
unsigned label_size, hsk_len;
const char *keylog_label;
void *ckey, *skey;
int ret;
if (stage == STAGE_UPD_OURS || stage == STAGE_UPD_PEERS)
return _tls13_update_keys(session, stage, params, iv_size,
key_size);
else if (stage == STAGE_EARLY)
return _tls13_set_early_keys(session, params, iv_size,
key_size);
else if (stage == STAGE_HS) {
label = HANDSHAKE_CLIENT_TRAFFIC_LABEL;
label_size = sizeof(HANDSHAKE_CLIENT_TRAFFIC_LABEL) - 1;
hsk_len = session->internals.handshake_hash_buffer.length;
keylog_label = "CLIENT_HANDSHAKE_TRAFFIC_SECRET";
ckey = session->key.proto.tls13.hs_ckey;
} else {
label = APPLICATION_CLIENT_TRAFFIC_LABEL;
label_size = sizeof(APPLICATION_CLIENT_TRAFFIC_LABEL) - 1;
hsk_len = session->internals
.handshake_hash_buffer_server_finished_len;
keylog_label = "CLIENT_TRAFFIC_SECRET_0";
ckey = session->key.proto.tls13.ap_ckey;
}
ret = _tls13_derive_secret(
session, label, label_size,
session->internals.handshake_hash_buffer.data, hsk_len,
session->key.proto.tls13.temp_secret, ckey);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_call_keylog_func(
session, keylog_label, ckey,
session->security_parameters.prf->output_size);
if (ret < 0)
return gnutls_assert_val(ret);
/* client keys */
ret = _tls13_expand_secret(session, "key", 3, NULL, 0, ckey, key_size,
ckey_block);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "iv", 2, NULL, 0, ckey, iv_size,
civ_block);
if (ret < 0)
return gnutls_assert_val(ret);
/* server keys */
if (stage == STAGE_HS) {
label = HANDSHAKE_SERVER_TRAFFIC_LABEL;
label_size = sizeof(HANDSHAKE_SERVER_TRAFFIC_LABEL) - 1;
keylog_label = "SERVER_HANDSHAKE_TRAFFIC_SECRET";
skey = session->key.proto.tls13.hs_skey;
} else {
label = APPLICATION_SERVER_TRAFFIC_LABEL;
label_size = sizeof(APPLICATION_SERVER_TRAFFIC_LABEL) - 1;
keylog_label = "SERVER_TRAFFIC_SECRET_0";
skey = session->key.proto.tls13.ap_skey;
}
ret = _tls13_derive_secret(
session, label, label_size,
session->internals.handshake_hash_buffer.data, hsk_len,
session->key.proto.tls13.temp_secret, skey);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_call_keylog_func(
session, keylog_label, skey,
session->security_parameters.prf->output_size);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "key", 3, NULL, 0, skey, key_size,
skey_block);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _tls13_expand_secret(session, "iv", 2, NULL, 0, skey, iv_size,
siv_block);
if (ret < 0)
return gnutls_assert_val(ret);
if (session->security_parameters.entity == GNUTLS_CLIENT) {
client_write = ¶ms->write;
server_write = ¶ms->read;
} else {
client_write = ¶ms->read;
server_write = ¶ms->write;
}
client_write->mac_key_size = 0;
server_write->mac_key_size = 0;
assert(key_size <= sizeof(client_write->key));
memcpy(client_write->key, ckey_block, key_size);
client_write->key_size = key_size;
_gnutls_hard_log("INT: CLIENT WRITE KEY [%d]: %s\n", key_size,
_gnutls_bin2hex(ckey_block, key_size, buf, sizeof(buf),
NULL));
memcpy(server_write->key, skey_block, key_size);
server_write->key_size = key_size;
_gnutls_hard_log("INT: SERVER WRITE KEY [%d]: %s\n", key_size,
_gnutls_bin2hex(skey_block, key_size, buf, sizeof(buf),
NULL));
if (iv_size > 0) {
assert(iv_size <= sizeof(client_write->iv));
memcpy(client_write->iv, civ_block, iv_size);
client_write->iv_size = iv_size;
_gnutls_hard_log("INT: CLIENT WRITE IV [%d]: %s\n", iv_size,
_gnutls_bin2hex(civ_block, iv_size, buf,
sizeof(buf), NULL));
memcpy(server_write->iv, siv_block, iv_size);
server_write->iv_size = iv_size;
_gnutls_hard_log("INT: SERVER WRITE IV [%d]: %s\n", iv_size,
_gnutls_bin2hex(siv_block, iv_size, buf,
sizeof(buf), NULL));
}
client_write->level = server_write->level =
stage == STAGE_HS ? GNUTLS_ENCRYPTION_LEVEL_HANDSHAKE :
GNUTLS_ENCRYPTION_LEVEL_APPLICATION;
return 0;
}
static int _gnutls_init_record_state(record_parameters_st *params,
const version_entry_st *ver, int read,
record_state_st *state)
{
int ret;
gnutls_datum_t *iv = NULL, _iv;
gnutls_datum_t key;
gnutls_datum_t mac;
_iv.data = state->iv;
_iv.size = state->iv_size;
key.data = state->key;
key.size = state->key_size;
mac.data = state->mac_key;
mac.size = state->mac_key_size;
if (_gnutls_cipher_type(params->cipher) == CIPHER_BLOCK) {
if (!_gnutls_version_has_explicit_iv(ver))
iv = &_iv;
} else if (_gnutls_cipher_type(params->cipher) == CIPHER_STREAM) {
/* To handle GOST ciphersuites */
if (_gnutls_cipher_get_implicit_iv_size(params->cipher))
iv = &_iv;
}
ret = _gnutls_auth_cipher_init(&state->ctx.tls12, params->cipher, &key,
iv, params->mac, &mac, params->etm,
#ifdef ENABLE_SSL3
(ver->id == GNUTLS_SSL3) ? 1 : 0,
#endif
1 - read /*1==encrypt */);
if (ret < 0 && params->cipher->id != GNUTLS_CIPHER_NULL) {
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_ERROR);
return gnutls_assert_val(ret);
}
if (is_cipher_algo_allowed(params->cipher->id))
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_APPROVED);
else
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_NOT_APPROVED);
return 0;
}
int _gnutls_set_cipher_suite2(gnutls_session_t session,
const gnutls_cipher_suite_entry_st *cs)
{
const cipher_entry_st *cipher_algo;
const mac_entry_st *mac_algo;
record_parameters_st *params;
int ret;
const version_entry_st *ver = get_version(session);
ret = _gnutls_epoch_get(session, EPOCH_NEXT, ¶ms);
if (ret < 0)
return gnutls_assert_val(ret);
cipher_algo = cipher_to_entry(cs->block_algorithm);
mac_algo = mac_to_entry(cs->mac_algorithm);
if (ver->tls13_sem && (session->internals.hsk_flags & HSK_HRR_SENT)) {
if (params->initialized &&
(params->cipher != cipher_algo || params->mac != mac_algo ||
cs != session->security_parameters.cs))
return gnutls_assert_val(
GNUTLS_E_RECEIVED_ILLEGAL_PARAMETER);
return 0;
}
/* The params shouldn't have been initialized at this point, unless we
* are doing trial encryption/decryption of early data.
*/
if (unlikely(
!((session->internals.hsk_flags & HSK_EARLY_DATA_IN_FLIGHT &&
!IS_SERVER(session)) ||
(session->internals.hsk_flags & HSK_EARLY_DATA_ACCEPTED &&
IS_SERVER(session))) &&
(params->initialized || params->cipher != NULL ||
params->mac != NULL))) {
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
}
if (_gnutls_cipher_is_ok(cipher_algo) == 0 ||
_gnutls_mac_is_ok(mac_algo) == 0)
return gnutls_assert_val(GNUTLS_E_UNWANTED_ALGORITHM);
if (_gnutls_version_has_selectable_prf(get_version(session))) {
if (cs->prf == GNUTLS_MAC_UNKNOWN ||
_gnutls_mac_is_ok(mac_to_entry(cs->prf)) == 0)
return gnutls_assert_val(GNUTLS_E_UNWANTED_ALGORITHM);
session->security_parameters.prf = mac_to_entry(cs->prf);
} else {
session->security_parameters.prf =
mac_to_entry(GNUTLS_MAC_MD5_SHA1);
}
session->security_parameters.cs = cs;
params->cipher = cipher_algo;
params->mac = mac_algo;
return 0;
}
/* Sets the next epoch to be a clone of the current one.
* The keys are not cloned, only the cipher and MAC.
*/
int _gnutls_epoch_dup(gnutls_session_t session, unsigned int epoch_rel)
{
record_parameters_st *prev;
record_parameters_st *next;
int ret;
ret = _gnutls_epoch_get(session, epoch_rel, &prev);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_epoch_get(session, EPOCH_NEXT, &next);
if (ret < 0) {
ret = _gnutls_epoch_setup_next(session, 0, &next);
if (ret < 0)
return gnutls_assert_val(ret);
}
if (next->initialized || next->cipher != NULL || next->mac != NULL)
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
next->cipher = prev->cipher;
next->mac = prev->mac;
return 0;
}
int _gnutls_epoch_set_keys(gnutls_session_t session, uint16_t epoch,
hs_stage_t stage)
{
int hash_size;
int IV_size;
int key_size;
record_parameters_st *params;
int ret;
const version_entry_st *ver =
stage == STAGE_EARLY && !IS_SERVER(session) ?
session->internals.resumed_security_parameters.pversion :
get_version(session);
if (unlikely(ver == NULL))
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
ret = _gnutls_epoch_get(session, epoch, ¶ms);
if (ret < 0)
return gnutls_assert_val(ret);
if (params->initialized)
return 0;
_gnutls_record_log("REC[%p]: Initializing epoch #%u\n", session,
params->epoch);
if (_gnutls_cipher_is_ok(params->cipher) == 0 ||
_gnutls_mac_is_ok(params->mac) == 0)
return gnutls_assert_val(GNUTLS_E_UNWANTED_ALGORITHM);
if (_gnutls_version_has_explicit_iv(ver) &&
(_gnutls_cipher_type(params->cipher) != CIPHER_BLOCK)) {
IV_size = _gnutls_cipher_get_implicit_iv_size(params->cipher);
} else {
IV_size = _gnutls_cipher_get_iv_size(params->cipher);
}
key_size = _gnutls_cipher_get_key_size(params->cipher);
hash_size = _gnutls_mac_get_key_size(params->mac);
params->etm = session->security_parameters.etm;
if (ver->tls13_sem) {
ret = _tls13_set_keys(session, stage, params, IV_size,
key_size);
if (ret < 0)
return gnutls_assert_val(ret);
if (stage != STAGE_EARLY ||
session->security_parameters.entity == GNUTLS_SERVER) {
ret = _tls13_init_record_state(params->cipher->id,
¶ms->read);
if (ret < 0)
return gnutls_assert_val(ret);
}
if (stage != STAGE_EARLY ||
session->security_parameters.entity == GNUTLS_CLIENT) {
ret = _tls13_init_record_state(params->cipher->id,
¶ms->write);
if (ret < 0)
return gnutls_assert_val(ret);
}
} else {
ret = _gnutls_set_keys(session, params, hash_size, IV_size,
key_size);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_init_record_state(params, ver, 1, ¶ms->read);
if (ret < 0)
return gnutls_assert_val(ret);
ret = _gnutls_init_record_state(params, ver, 0, ¶ms->write);
if (ret < 0)
return gnutls_assert_val(ret);
}
/* The TLS1.3 limit of 256 additional bytes is also enforced under CBC
* ciphers to ensure we interoperate with gnutls 2.12.x which could add padding
* data exceeding the maximum. */
if (ver->tls13_sem ||
_gnutls_cipher_type(params->cipher) == CIPHER_BLOCK) {
session->internals.max_recv_size = 256;
} else {
session->internals.max_recv_size = 0;
}
if (!ver->tls13_sem) {
session->internals.max_recv_size += _gnutls_record_overhead(
ver, params->cipher, params->mac, 1);
if (session->internals.allow_large_records != 0)
session->internals.max_recv_size += EXTRA_COMP_SIZE;
}
session->internals.max_recv_size +=
session->security_parameters.max_record_recv_size +
RECORD_HEADER_SIZE(session);
_dtls_reset_window(params);
_gnutls_record_log("REC[%p]: Epoch #%u ready\n", session,
params->epoch);
params->initialized = 1;
return 0;
}
void _gnutls_set_resumed_parameters(gnutls_session_t session)
{
security_parameters_st *src =
&session->internals.resumed_security_parameters;
security_parameters_st *dst = &session->security_parameters;
const version_entry_st *ver = get_version(session);
/* Under TLS 1.3, these values are items which are not
* negotiated on the subsequent session. */
if (!ver->tls13_sem) {
dst->cs = src->cs;
_gnutls_memory_mark_defined(dst->master_secret,
GNUTLS_MASTER_SIZE);
memcpy(dst->master_secret, src->master_secret,
GNUTLS_MASTER_SIZE);
_gnutls_memory_mark_defined(dst->client_random,
GNUTLS_RANDOM_SIZE);
memcpy(dst->client_random, src->client_random,
GNUTLS_RANDOM_SIZE);
_gnutls_memory_mark_defined(dst->server_random,
GNUTLS_RANDOM_SIZE);
memcpy(dst->server_random, src->server_random,
GNUTLS_RANDOM_SIZE);
dst->ext_master_secret = src->ext_master_secret;
dst->etm = src->etm;
dst->prf = src->prf;
dst->grp = src->grp;
dst->pversion = src->pversion;
}
memcpy(dst->session_id, src->session_id, GNUTLS_MAX_SESSION_ID_SIZE);
dst->session_id_size = src->session_id_size;
dst->timestamp = src->timestamp;
dst->client_ctype = src->client_ctype;
dst->server_ctype = src->server_ctype;
dst->client_auth_type = src->client_auth_type;
dst->server_auth_type = src->server_auth_type;
if (!ver->tls13_sem && !(session->internals.hsk_flags &
HSK_RECORD_SIZE_LIMIT_NEGOTIATED)) {
dst->max_record_recv_size = src->max_record_recv_size;
dst->max_record_send_size = src->max_record_send_size;
}
}
/* Sets the current connection session to conform with the
* Security parameters(pending session), and initializes encryption.
* Actually it initializes and starts encryption ( so it needs
* secrets and random numbers to have been negotiated)
* This is to be called after sending the Change Cipher Spec packet.
*/
int _gnutls_connection_state_init(gnutls_session_t session)
{
int ret;
/* Setup the master secret
*/
if ((ret = _gnutls_generate_master(session, 0)) < 0)
return gnutls_assert_val(ret);
return 0;
}
/* Initializes the read connection session
* (read encrypted data)
*/
int _gnutls_read_connection_state_init(gnutls_session_t session)
{
const uint16_t epoch_next = session->security_parameters.epoch_next;
int ret;
/* Update internals from CipherSuite selected.
* If we are resuming just copy the connection session
*/
if (session->internals.resumed &&
session->security_parameters.entity == GNUTLS_CLIENT)
_gnutls_set_resumed_parameters(session);
ret = _gnutls_epoch_set_keys(session, epoch_next, 0);
if (ret < 0)
return ret;
_gnutls_handshake_log("HSK[%p]: Cipher Suite: %s\n", session,
session->security_parameters.cs->name);
session->security_parameters.epoch_read = epoch_next;
return 0;
}
/* Initializes the write connection session
* (write encrypted data)
*/
int _gnutls_write_connection_state_init(gnutls_session_t session)
{
const uint16_t epoch_next = session->security_parameters.epoch_next;
int ret;
/* reset max_record_send_size if it was negotiated in the
* previous handshake using the record_size_limit extension */
if (!(session->internals.hsk_flags &
HSK_RECORD_SIZE_LIMIT_NEGOTIATED) &&
session->security_parameters.entity == GNUTLS_SERVER)
session->security_parameters.max_record_send_size =
session->security_parameters.max_user_record_send_size;
/* Update internals from CipherSuite selected.
* If we are resuming just copy the connection session
*/
if (session->internals.resumed &&
session->security_parameters.entity == GNUTLS_SERVER)
_gnutls_set_resumed_parameters(session);
ret = _gnutls_epoch_set_keys(session, epoch_next, 0);
if (ret < 0)
return gnutls_assert_val(ret);
_gnutls_handshake_log("HSK[%p]: Cipher Suite: %s\n", session,
session->security_parameters.cs->name);
_gnutls_handshake_log(
"HSK[%p]: Initializing internal [write] cipher sessions\n",
session);
session->security_parameters.epoch_write = epoch_next;
return 0;
}
static inline int epoch_resolve(gnutls_session_t session,
unsigned int epoch_rel, uint16_t *epoch_out)
{
switch (epoch_rel) {
case EPOCH_READ_CURRENT:
*epoch_out = session->security_parameters.epoch_read;
return 0;
case EPOCH_WRITE_CURRENT:
*epoch_out = session->security_parameters.epoch_write;
return 0;
case EPOCH_NEXT:
*epoch_out = session->security_parameters.epoch_next;
return 0;
default:
if (epoch_rel > 0xffffu)
return gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
*epoch_out = epoch_rel;
return 0;
}
}
static inline record_parameters_st **epoch_get_slot(gnutls_session_t session,
uint16_t epoch)
{
/* First look for a non-empty slot */
for (size_t i = 0; i < MAX_EPOCH_INDEX; i++) {
record_parameters_st **slot = &session->record_parameters[i];
if (*slot != NULL && (*slot)->epoch == epoch)
return slot;
}
/* Then look for an empty slot */
for (size_t i = 0; i < MAX_EPOCH_INDEX; i++) {
record_parameters_st **slot = &session->record_parameters[i];
if (*slot == NULL)
return slot;
}
gnutls_assert();
_gnutls_handshake_log("No slot available for epoch %u\n", epoch);
return NULL;
}
int _gnutls_epoch_get(gnutls_session_t session, unsigned int epoch_rel,
record_parameters_st **params_out)
{
uint16_t epoch;
record_parameters_st **params;
int ret;
gnutls_mutex_lock(&session->internals.epoch_lock);
ret = epoch_resolve(session, epoch_rel, &epoch);
if (ret < 0) {
gnutls_assert();
goto cleanup;
}
params = epoch_get_slot(session, epoch);
if (params == NULL || *params == NULL) {
ret = gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
goto cleanup;
}
if (params_out)
*params_out = *params;
ret = 0;
cleanup:
gnutls_mutex_unlock(&session->internals.epoch_lock);
return ret;
}
/* Ensures that the next epoch is setup. When an epoch will null ciphers
* is to be setup, call with @null_epoch set to true. In that case
* the epoch is fully initialized after call.
*/
int _gnutls_epoch_setup_next(gnutls_session_t session, unsigned null_epoch,
record_parameters_st **newp)
{
record_parameters_st **slot;
slot = epoch_get_slot(session, session->security_parameters.epoch_next);
/* If slot out of range or not empty. */
if (slot == NULL)
return gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
if (*slot != NULL) { /* already initialized */
if (unlikely(null_epoch && !(*slot)->initialized))
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
if (unlikely((*slot)->epoch !=
session->security_parameters.epoch_next))
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
goto finish;
}
_gnutls_record_log("REC[%p]: Allocating epoch #%u\n", session,
session->security_parameters.epoch_next);
*slot = gnutls_calloc(1, sizeof(record_parameters_st));
if (*slot == NULL)
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);
(*slot)->epoch = session->security_parameters.epoch_next;
if (null_epoch) {
(*slot)->cipher = cipher_to_entry(GNUTLS_CIPHER_NULL);
(*slot)->mac = mac_to_entry(GNUTLS_MAC_NULL);
(*slot)->initialized = 1;
} else {
(*slot)->cipher = NULL;
(*slot)->mac = NULL;
}
if (IS_DTLS(session)) {
uint64_t seq = (*slot)->write.sequence_number;
seq &= UINT64_C(0xffffffffffff);
seq |= ((uint64_t)session->security_parameters.epoch_next)
<< 48;
(*slot)->write.sequence_number = seq;
}
finish:
if (newp != NULL)
*newp = *slot;
return 0;
}
static inline int epoch_is_active(gnutls_session_t session,
record_parameters_st *params)
{
const security_parameters_st *sp = &session->security_parameters;
if (params->epoch == sp->epoch_read)
return 1;
if (params->epoch == sp->epoch_write)
return 1;
if (params->epoch == sp->epoch_next)
return 1;
return 0;
}
static inline int epoch_alive(gnutls_session_t session,
record_parameters_st *params)
{
if (params->usage_cnt > 0)
return 1;
return epoch_is_active(session, params);
}
void _gnutls_epoch_gc(gnutls_session_t session)
{
int i;
_gnutls_record_log("REC[%p]: Start of epoch cleanup\n", session);
gnutls_mutex_lock(&session->internals.epoch_lock);
/* Free all dead cipher state */
for (i = 0; i < MAX_EPOCH_INDEX; i++) {
if (session->record_parameters[i] != NULL) {
if (!epoch_is_active(session,
session->record_parameters[i]) &&
session->record_parameters[i]->usage_cnt)
_gnutls_record_log(
"REC[%p]: Note inactive epoch %d has %d users\n",
session,
session->record_parameters[i]->epoch,
session->record_parameters[i]
->usage_cnt);
if (!epoch_alive(session,
session->record_parameters[i])) {
_gnutls_epoch_free(
session, session->record_parameters[i]);
session->record_parameters[i] = NULL;
}
}
}
gnutls_mutex_unlock(&session->internals.epoch_lock);
_gnutls_record_log("REC[%p]: End of epoch cleanup\n", session);
}
static inline void free_record_state(record_state_st *state)
{
zeroize_key(state->mac_key, state->mac_key_size);
zeroize_key(state->iv, state->iv_size);
zeroize_key(state->key, state->key_size);
if (state->is_aead)
_gnutls_aead_cipher_deinit(&state->ctx.aead);
else
_gnutls_auth_cipher_deinit(&state->ctx.tls12);
}
void _gnutls_epoch_free(gnutls_session_t session, record_parameters_st *params)
{
_gnutls_record_log("REC[%p]: Epoch #%u freed\n", session,
params->epoch);
free_record_state(¶ms->read);
free_record_state(¶ms->write);
gnutls_free(params);
}
static int _gnutls_call_secret_func(gnutls_session_t session, hs_stage_t stage,
bool for_read, bool for_write)
{
const mac_entry_st *prf = NULL;
gnutls_record_encryption_level_t level;
void *secret_read = NULL, *secret_write = NULL;
if (session->internals.h_secret_func == NULL)
return 0;
switch (stage) {
case STAGE_EARLY:
prf = session->key.binders[0].prf;
level = GNUTLS_ENCRYPTION_LEVEL_EARLY;
if (for_read) {
if (unlikely(session->security_parameters.entity ==
GNUTLS_CLIENT))
return gnutls_assert_val(
GNUTLS_E_INTERNAL_ERROR);
secret_read = session->key.proto.tls13.e_ckey;
}
if (for_write) {
if (unlikely(session->security_parameters.entity ==
GNUTLS_SERVER))
return gnutls_assert_val(
GNUTLS_E_INTERNAL_ERROR);
secret_write = session->key.proto.tls13.e_ckey;
}
break;
case STAGE_HS:
prf = session->security_parameters.prf;
level = GNUTLS_ENCRYPTION_LEVEL_HANDSHAKE;
if (for_read)
secret_read = session->security_parameters.entity ==
GNUTLS_CLIENT ?
session->key.proto.tls13.hs_skey :
session->key.proto.tls13.hs_ckey;
if (for_write)
secret_write =
session->security_parameters.entity ==
GNUTLS_CLIENT ?
session->key.proto.tls13.hs_ckey :
session->key.proto.tls13.hs_skey;
break;
case STAGE_APP:
case STAGE_UPD_OURS:
case STAGE_UPD_PEERS:
prf = session->security_parameters.prf;
level = GNUTLS_ENCRYPTION_LEVEL_APPLICATION;
if (for_read)
secret_read = session->security_parameters.entity ==
GNUTLS_CLIENT ?
session->key.proto.tls13.ap_skey :
session->key.proto.tls13.ap_ckey;
if (for_write)
secret_write =
session->security_parameters.entity ==
GNUTLS_CLIENT ?
session->key.proto.tls13.ap_ckey :
session->key.proto.tls13.ap_skey;
break;
default:
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
}
return session->internals.h_secret_func(session, level, secret_read,
secret_write, prf->output_size);
}
int _tls13_connection_state_init(gnutls_session_t session, hs_stage_t stage)
{
const uint16_t epoch_next = session->security_parameters.epoch_next;
int ret;
ret = _gnutls_epoch_set_keys(session, epoch_next, stage);
if (ret < 0)
return ret;
_gnutls_handshake_log("HSK[%p]: TLS 1.3 re-key with cipher suite: %s\n",
session, session->security_parameters.cs->name);
session->security_parameters.epoch_read = epoch_next;
session->security_parameters.epoch_write = epoch_next;
ret = _gnutls_call_secret_func(session, stage, 1, 1);
if (ret < 0)
return gnutls_assert_val(ret);
return 0;
}
int _tls13_read_connection_state_init(gnutls_session_t session,
hs_stage_t stage)
{
const uint16_t epoch_next = session->security_parameters.epoch_next;
int ret;
if (unlikely(stage == STAGE_EARLY && !IS_SERVER(session))) {
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
}
ret = _gnutls_epoch_set_keys(session, epoch_next, stage);
if (ret < 0)
return ret;
_gnutls_handshake_log(
"HSK[%p]: TLS 1.3 set read key with cipher suite: %s\n",
session,
stage == STAGE_EARLY ?
session->internals.resumed_security_parameters.cs->name :
session->security_parameters.cs->name);
session->security_parameters.epoch_read = epoch_next;
ret = _gnutls_call_secret_func(session, stage, 1, 0);
if (ret < 0)
return gnutls_assert_val(ret);
return 0;
}
int _tls13_write_connection_state_init(gnutls_session_t session,
hs_stage_t stage)
{
const uint16_t epoch_next = session->security_parameters.epoch_next;
int ret;
if (unlikely(stage == STAGE_EARLY && IS_SERVER(session))) {
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
}
ret = _gnutls_epoch_set_keys(session, epoch_next, stage);
if (ret < 0)
return ret;
_gnutls_handshake_log(
"HSK[%p]: TLS 1.3 set write key with cipher suite: %s\n",
session,
stage == STAGE_EARLY ?
session->internals.resumed_security_parameters.cs->name :
session->security_parameters.cs->name);
session->security_parameters.epoch_write = epoch_next;
ret = _gnutls_call_secret_func(session, stage, 0, 1);
if (ret < 0)
return gnutls_assert_val(ret);
return 0;
}
static int _tls13_init_record_state(gnutls_cipher_algorithm_t algo,
record_state_st *state)
{
int ret;
gnutls_datum_t key;
key.data = state->key;
key.size = state->key_size;
ret = _gnutls_aead_cipher_init(&state->ctx.aead, algo, &key);
if (ret < 0) {
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_ERROR);
return gnutls_assert_val(ret);
}
if (is_cipher_algo_allowed(algo))
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_APPROVED);
else
_gnutls_switch_fips_state(GNUTLS_FIPS140_OP_NOT_APPROVED);
state->aead_tag_size = gnutls_cipher_get_tag_size(algo);
state->is_aead = 1;
return 0;
}
/**
* gnutls_handshake_set_secret_function:
* @session: is a #gnutls_session_t type.
* @func: the secret func
*
* This function will set a callback to be called when a new traffic
* secret is installed.
*
* Since: 3.7.0
*/
void gnutls_handshake_set_secret_function(gnutls_session_t session,
gnutls_handshake_secret_func func)
{
session->internals.h_secret_func = func;
}
|