-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The p12tool command has been moved from pki-tools to jss-tools.
- Loading branch information
Showing
23 changed files
with
10,749 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,5 @@ | |
|
||
A new `jss-tools` RPM package has been added to provide tools such as: | ||
|
||
* `p12tool` | ||
* `sslget` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
project(tools) | ||
|
||
if(WITH_NATIVE) | ||
add_subdirectory(src/main/native/p12tool) | ||
add_subdirectory(src/main/native/sslget) | ||
endif(WITH_NATIVE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
project(p12tool) | ||
|
||
set(P12TOOL_PRIVATE_INCLUDE_DIRS | ||
${CMAKE_BINARY_DIR} | ||
${NSPR_INCLUDE_DIRS} | ||
${NSS_INCLUDE_DIRS} | ||
) | ||
|
||
set(p12tool_SRCS | ||
basicutil.c | ||
pppolicy.c | ||
secutil.c | ||
secpwd.c | ||
moreoids.c | ||
p12tool.c | ||
) | ||
|
||
include_directories(${P12TOOL_PRIVATE_INCLUDE_DIRS}) | ||
|
||
add_executable(p12tool ${p12tool_SRCS}) | ||
add_dependencies(native p12tool) | ||
target_link_libraries(p12tool smime3 ssl3 nss3 nssutil3 plc4 plds4 nspr4) | ||
|
||
install( | ||
TARGETS p12tool | ||
RUNTIME DESTINATION ${BIN_INSTALL_DIR} | ||
LIBRARY DESTINATION ${LIB_INSTALL_DIR} | ||
ARCHIVE DESTINATION ${LIB_INSTALL_DIR} | ||
) |
Oops, something went wrong.