|
1 | 1 | /* crypto/bn/bn_err.c */ |
2 | 2 | /* ==================================================================== |
3 | | - * Copyright (c) 1999-2015 The OpenSSL Project. All rights reserved. |
| 3 | + * Copyright (c) 1999-2023 The OpenSSL Project. All rights reserved. |
4 | 4 | * |
5 | 5 | * Redistribution and use in source and binary forms, with or without |
6 | 6 | * modification, are permitted provided that the following conditions |
@@ -84,6 +84,7 @@ static ERR_STRING_DATA BN_str_functs[] = { |
84 | 84 | {ERR_FUNC(BN_F_BN_DIV), "BN_div"}, |
85 | 85 | {ERR_FUNC(BN_F_BN_DIV_NO_BRANCH), "BN_div_no_branch"}, |
86 | 86 | {ERR_FUNC(BN_F_BN_DIV_RECP), "BN_div_recp"}, |
| 87 | + {ERR_FUNC(BN_F_BN_DO_UNBLIND), "bn_do_unblind"}, |
87 | 88 | {ERR_FUNC(BN_F_BN_EXP), "BN_exp"}, |
88 | 89 | {ERR_FUNC(BN_F_BN_EXPAND2), "bn_expand2"}, |
89 | 90 | {ERR_FUNC(BN_F_BN_EXPAND_INTERNAL), "BN_EXPAND_INTERNAL"}, |
@@ -133,6 +134,7 @@ static ERR_STRING_DATA BN_str_reasons[] = { |
133 | 134 | {ERR_REASON(BN_R_NOT_INITIALIZED), "not initialized"}, |
134 | 135 | {ERR_REASON(BN_R_NO_INVERSE), "no inverse"}, |
135 | 136 | {ERR_REASON(BN_R_NO_SOLUTION), "no solution"}, |
| 137 | + {ERR_REASON(BN_R_PASSED_INVALID_ARGUMENT), "passed invalid argument"}, |
136 | 138 | {ERR_REASON(BN_R_P_IS_NOT_PRIME), "p is not prime"}, |
137 | 139 | {ERR_REASON(BN_R_TOO_MANY_ITERATIONS), "too many iterations"}, |
138 | 140 | {ERR_REASON(BN_R_TOO_MANY_TEMPORARY_VARIABLES), |
|
0 commit comments