Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e096002

Browse files
committedFeb 4, 2025·
Initial implementation from node.js
1 parent d779257 commit e096002

9 files changed

+5619
-6
lines changed
 

‎.bazelrc

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
common --enable_workspace
12
build --cxxopt="-std=c++20"

‎BUILD.bazel

+3
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,7 @@ cc_library(
44
hdrs = glob(["include/*.h"]),
55
includes = ["include"],
66
visibility = ["//visibility:public"],
7+
deps = [
8+
"@ssl"
9+
]
710
)

‎WORKSPACE

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
workspace(name = "ncrypto")
2+
3+
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4+
5+
http_archive(
6+
name = "ssl",
7+
sha256 = "76962c003a298f405d1a5d273a74a94f58b69f65d64b8574a82d4c21c5e407be",
8+
strip_prefix = "google-boringssl-6abe184",
9+
type = "tgz",
10+
urls = ["https://github.com/google/boringssl/tarball/6abe18402eb2a5e9b00158c6459646a948c53060"],
11+
)

‎external

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/jsnell/.cache/bazel/_bazel_jsnell/5f319b6a8e3a6d510bc9a4983389ea9e/execroot/_main/bazel-out/../../../external

‎include/dh-primes.h

+309
Large diffs are not rendered by default.

‎include/ncrypto.h

+1,408
Large diffs are not rendered by default.

‎src/CMakeLists.txt

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
add_library(ncrypto ncrypto.cpp)
2-
target_include_directories(ncrypto
3-
PUBLIC
4-
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/include>
5-
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
6-
)
1+
add_library(ncrypto ncrypto.cpp) target_include_directories(
2+
ncrypto PUBLIC $<BUILD_INTERFACE : ${PROJECT_SOURCE_DIR} / include>
3+
$<INSTALL_INTERFACE : ${CMAKE_INSTALL_INCLUDEDIR}>)

‎src/engine.cpp

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
#include "ncrypto.h"
2+
3+
namespace ncrypto {
4+
5+
// ============================================================================
6+
// Engine
7+
8+
#ifndef OPENSSL_NO_ENGINE
9+
EnginePointer::EnginePointer(ENGINE* engine_, bool finish_on_exit_)
10+
: engine(engine_), finish_on_exit(finish_on_exit_) {}
11+
12+
EnginePointer::EnginePointer(EnginePointer&& other) noexcept
13+
: engine(other.engine), finish_on_exit(other.finish_on_exit) {
14+
other.release();
15+
}
16+
17+
EnginePointer::~EnginePointer() { reset(); }
18+
19+
EnginePointer& EnginePointer::operator=(EnginePointer&& other) noexcept {
20+
if (this == &other) return *this;
21+
this->~EnginePointer();
22+
return *new (this) EnginePointer(std::move(other));
23+
}
24+
25+
void EnginePointer::reset(ENGINE* engine_, bool finish_on_exit_) {
26+
if (engine != nullptr) {
27+
if (finish_on_exit) {
28+
// This also does the equivalent of ENGINE_free.
29+
ENGINE_finish(engine);
30+
} else {
31+
ENGINE_free(engine);
32+
}
33+
}
34+
engine = engine_;
35+
finish_on_exit = finish_on_exit_;
36+
}
37+
38+
ENGINE* EnginePointer::release() {
39+
ENGINE* ret = engine;
40+
engine = nullptr;
41+
finish_on_exit = false;
42+
return ret;
43+
}
44+
45+
EnginePointer EnginePointer::getEngineByName(const std::string_view name,
46+
CryptoErrorList* errors) {
47+
MarkPopErrorOnReturn mark_pop_error_on_return(errors);
48+
EnginePointer engine(ENGINE_by_id(name.data()));
49+
if (!engine) {
50+
// Engine not found, try loading dynamically.
51+
engine = EnginePointer(ENGINE_by_id("dynamic"));
52+
if (engine) {
53+
if (!ENGINE_ctrl_cmd_string(engine.get(), "SO_PATH", name.data(), 0) ||
54+
!ENGINE_ctrl_cmd_string(engine.get(), "LOAD", nullptr, 0)) {
55+
engine.reset();
56+
}
57+
}
58+
}
59+
return engine;
60+
}
61+
62+
bool EnginePointer::setAsDefault(uint32_t flags, CryptoErrorList* errors) {
63+
if (engine == nullptr) return false;
64+
ClearErrorOnReturn clear_error_on_return(errors);
65+
return ENGINE_set_default(engine, flags) != 0;
66+
}
67+
68+
bool EnginePointer::init(bool finish_on_exit) {
69+
if (engine == nullptr) return false;
70+
if (finish_on_exit) setFinishOnExit();
71+
return ENGINE_init(engine) == 1;
72+
}
73+
74+
EVPKeyPointer EnginePointer::loadPrivateKey(const std::string_view key_name) {
75+
if (engine == nullptr) return EVPKeyPointer();
76+
return EVPKeyPointer(
77+
ENGINE_load_private_key(engine, key_name.data(), nullptr, nullptr));
78+
}
79+
80+
void EnginePointer::initEnginesOnce() {
81+
static bool initialized = false;
82+
if (!initialized) {
83+
ENGINE_load_builtin_engines();
84+
ENGINE_register_all_complete();
85+
initialized = true;
86+
}
87+
}
88+
89+
#endif // OPENSSL_NO_ENGINE
90+
91+
} // namespace ncrypto

‎src/ncrypto.cpp

+3,792
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.