-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
this is an update to add cipher support, MAC support, and SecureRando…
…m support
- Loading branch information
Showing
42 changed files
with
4,043 additions
and
1,407 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
Stephan Fuhrmann <s AT sfuhrm.de> | ||
|
||
Daniel Thertell <[email protected]> | ||
Jim Showalter <[email protected]> |
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,21 +1,15 @@ | ||
# | ||
# Dockerfile for building a per-platform build | ||
# in github actions. | ||
# | ||
# See .github/workflows/build.yml | ||
# | ||
FROM debian:11 | ||
FROM debian:10 | ||
|
||
ENV JAVA_HOME=/opt/java/openjdk | ||
COPY --from=eclipse-temurin:11 $JAVA_HOME $JAVA_HOME | ||
ENV PATH="${JAVA_HOME}/bin:${PATH}" | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
make gcc libssl1.1 libssl-dev | ||
make gcc libssl1.1 libssl-dev | ||
COPY . openssl4j | ||
ENV JAVA_HOME=/opt/java/openjdk/ | ||
RUN echo "JAVA_HOME is ${JAVA_HOME}" | ||
RUN echo "OS_ARCH is $(cd openssl4j/build-helper && ${JAVA_HOME}/bin/java -Xint OsArch.java)" | ||
RUN cd openssl4j && \ | ||
make | ||
make | ||
RUN cd openssl4j/target && ls -al |
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
Oops, something went wrong.