7b35b58ae6
Another signedness error. Leave a TODO to possibly resolve EVP_DecodeBlock's ignoring padding. Document some of the Init/Update/Finish versions' behavior. Change-Id: I78a72c3163f8543172a7008b2d09fb10e003d957 Reviewed-on: https://boringssl-review.googlesource.com/1230 Reviewed-by: Adam Langley <agl@google.com>
18 lines
175 B
CMake
18 lines
175 B
CMake
include_directories(. .. ../../include)
|
|
|
|
add_library(
|
|
base64
|
|
|
|
OBJECT
|
|
|
|
base64.c
|
|
)
|
|
|
|
add_executable(
|
|
base64_test
|
|
|
|
base64_test.c
|
|
)
|
|
|
|
target_link_libraries(base64_test crypto)
|