Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Барабаш Элина Алексеевна
libakrypt-0.x
Commits
0d6f4ca4
Commit
0d6f4ca4
authored
1 year ago
by
Нестеренко Алексей Юрьевич
Browse files
Options
Download
Patches
Plain Diff
Уменьшено количество выводимых сообщений на уровнеаудита ak_log_standard
parent
370867ce
master
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/ak_libakrypt.c
+11
-11
source/ak_libakrypt.c
source/ak_options.c
+2
-2
source/ak_options.c
with
13 additions
and
13 deletions
+13
-13
source/ak_libakrypt.c
+
11
−
11
View file @
0d6f4ca4
...
@@ -54,7 +54,7 @@
...
@@ -54,7 +54,7 @@
return
ak_false
;
return
ak_false
;
}
}
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
if
(
ak_log_get_level
()
>
ak_log_standard
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"size of pointer is %d"
,
sizeof
(
ak_pointer
));
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"size of pointer is %d"
,
sizeof
(
ak_pointer
));
/* определяем тип платформы: little-endian или big-endian */
/* определяем тип платформы: little-endian или big-endian */
...
@@ -66,7 +66,7 @@
...
@@ -66,7 +66,7 @@
"incorrect endian: library runs on big endian, but compiled for little endian platform"
);
"incorrect endian: library runs on big endian, but compiled for little endian platform"
);
return
ak_false
;
return
ak_false
;
}
else
}
else
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs on little endian platform"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs on little endian platform"
);
}
}
#else
#else
...
@@ -75,33 +75,33 @@
...
@@ -75,33 +75,33 @@
"incorrect endian: library runs on little endian, but compiled for big endian platform"
);
"incorrect endian: library runs on little endian, but compiled for big endian platform"
);
return
ak_false
;
return
ak_false
;
}
else
}
else
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs on big endian platform"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs on big endian platform"
);
}
}
#endif
#endif
#ifdef AK_HAVE_BUILTIN_XOR_SI128
#ifdef AK_HAVE_BUILTIN_XOR_SI128
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies __m128i base type"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies __m128i base type"
);
}
}
#endif
#endif
#ifdef AK_HAVE_BUILTIN_CLMULEPI64
#ifdef AK_HAVE_BUILTIN_CLMULEPI64
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies clmulepi64 instruction"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies clmulepi64 instruction"
);
}
}
#endif
#endif
#ifdef AK_HAVE_BUILTIN_MULQ_GCC
#ifdef AK_HAVE_BUILTIN_MULQ_GCC
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies assembler code for mulq command"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library applies assembler code for mulq command"
);
}
}
#endif
#endif
#ifdef AK_HAVE_PTHREAD_H
#ifdef AK_HAVE_PTHREAD_H
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs with pthreads support"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs with pthreads support"
);
}
}
#endif
#endif
#ifdef AK_HAVE_GMP_H
#ifdef AK_HAVE_GMP_H
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
{
if
(
ak_log_get_level
()
>
ak_log_standard
)
{
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs with gmp support"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"library runs with gmp support"
);
}
}
#endif
#endif
...
@@ -361,7 +361,7 @@
...
@@ -361,7 +361,7 @@
}
}
/* выводим версию библиотеки */
/* выводим версию библиотеки */
if
(
ak_log_get_level
()
>
ak_log_
none
)
if
(
ak_log_get_level
()
>
ak_log_
standard
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"libakrypt version %s"
,
ak_libakrypt_version
(
));
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"libakrypt version %s"
,
ak_libakrypt_version
(
));
/* считываем настройки криптографических алгоритмов */
/* считываем настройки криптографических алгоритмов */
...
@@ -377,7 +377,7 @@
...
@@ -377,7 +377,7 @@
ak_error_set_color_output
(
ak_false
);
ak_error_set_color_output
(
ak_false
);
#endif
#endif
/* выводим значения установленных параметров библиотеки */
/* выводим значения установленных параметров библиотеки */
if
(
ak_log_get_level
()
>
=
ak_log_standard
)
ak_libakrypt_log_options
();
if
(
ak_log_get_level
()
>
ak_log_standard
)
ak_libakrypt_log_options
();
/* проверяем длины фиксированных типов данных */
/* проверяем длины фиксированных типов данных */
if
(
ak_libakrypt_test_types
()
!=
ak_true
)
{
if
(
ak_libakrypt_test_types
()
!=
ak_true
)
{
...
@@ -422,7 +422,7 @@
...
@@ -422,7 +422,7 @@
поскольку функция динамического контроля экспортируется,
поскольку функция динамического контроля экспортируется,
то она может быть запущена пользователем самостоятельно. */
то она может быть запущена пользователем самостоятельно. */
if
(
ak_log_get_level
()
!=
ak_log_none
)
if
(
ak_log_get_level
()
>
ak_log_none
)
ak_error_message
(
ak_error_ok
,
__func__
,
"creation of libakrypt is Ok"
);
ak_error_message
(
ak_error_ok
,
__func__
,
"creation of libakrypt is Ok"
);
return
ak_true
;
return
ak_true
;
...
...
This diff is collapsed.
Click to expand it.
source/ak_options.c
+
2
−
2
View file @
0d6f4ca4
...
@@ -395,7 +395,7 @@
...
@@ -395,7 +395,7 @@
if
(
ak_file_open_to_read
(
&
fd
,
name
)
==
ak_error_ok
)
{
if
(
ak_file_open_to_read
(
&
fd
,
name
)
==
ak_error_ok
)
{
ak_file_close
(
&
fd
);
ak_file_close
(
&
fd
);
if
((
error
=
ak_ini_parse
(
name
,
ak_libakrypt_load_option_from_file
,
NULL
))
==
ak_error_ok
)
{
if
((
error
=
ak_ini_parse
(
name
,
ak_libakrypt_load_option_from_file
,
NULL
))
==
ak_error_ok
)
{
if
(
ak_log_get_level
()
>
ak_log_
none
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
if
(
ak_log_get_level
()
>
ak_log_
standard
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"all options have been read from the %s file"
,
name
);
"all options have been read from the %s file"
,
name
);
return
ak_true
;
return
ak_true
;
}
else
{
}
else
{
...
@@ -415,7 +415,7 @@
...
@@ -415,7 +415,7 @@
if
(
ak_file_open_to_read
(
&
fd
,
name
)
==
ak_error_ok
)
{
if
(
ak_file_open_to_read
(
&
fd
,
name
)
==
ak_error_ok
)
{
ak_file_close
(
&
fd
);
ak_file_close
(
&
fd
);
if
((
error
=
ak_ini_parse
(
name
,
ak_libakrypt_load_option_from_file
,
NULL
))
==
ak_error_ok
)
{
if
((
error
=
ak_ini_parse
(
name
,
ak_libakrypt_load_option_from_file
,
NULL
))
==
ak_error_ok
)
{
if
(
ak_log_get_level
()
>
ak_log_
none
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
if
(
ak_log_get_level
()
>
ak_log_
standard
)
ak_error_message_fmt
(
ak_error_ok
,
__func__
,
"all options have been read from the %s file"
,
name
);
"all options have been read from the %s file"
,
name
);
return
ak_true
;
return
ak_true
;
}
else
{
}
else
{
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets