1
1
의 미러 https://github.com/henrydcase/pqc.git synced 2024-11-22 07:35:38 +00:00

change name of the librarry

This commit is contained in:
Henry Case 2021-03-25 00:59:41 +00:00
부모 2a7371a40f
커밋 5cf635a26b
2개의 변경된 파일9개의 추가작업 그리고 8개의 파일을 삭제

파일 보기

@ -216,24 +216,24 @@ add_library(
)
add_library(
pqclean
pqc
SHARED
)
add_library(
pqclean_s
pqc_s
STATIC
)
get_property(OBJ_LIBS GLOBAL PROPERTY obj_libs)
target_link_libraries(
pqclean
pqc
common
${OBJ_LIBS}
)
target_link_libraries(
pqclean_s
pqc_s
common
${OBJ_LIBS}
)
@ -248,7 +248,7 @@ target_link_libraries(
ut
gtest
gtest_main
pqclean_s)
pqc_s)
target_include_directories(
ut PRIVATE
@ -256,10 +256,10 @@ target_include_directories(
${CMAKE_SOURCE_DIR})
install(TARGETS pqclean pqclean_s
install(TARGETS pqc pqc_s
PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ GROUP_WRITE WORLD_READ WORLD_WRITE
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
install(FILES
${QRS_PUBLIC_INC}
DESTINATION include/pqclean)
DESTINATION include/pqc)

파일 보기

@ -22,7 +22,8 @@ fn signature_scheme(el: &TestVector) {
assert_eq!(
pqc_sig_verify(p, msg.as_mut_ptr(), el.sig.msg.len() as u64,
el.sig.sm.as_ptr(), el.sig.sm.len() as u64,
el.sig.pk.as_ptr()), true);
el.sig.pk.as_ptr()),
true);
}
}