使用 .bpl 作为外部模块的安全性

Security of using .bpl as external modules

我对 delphi 还是个新手,我开发了一个应用程序,它按照本指南 http://edn.embarcadero.com/article/27178

在运行时加载 bpl 文件

bpl 文件将与主应用程序位于同一文件夹中,我想知道这样做的安全性如何?

我发现了这个问题 External modules security 但它没有完全回答我的问题。

我的意思是,如果客户复制这些 bpl 文件并将它们提供给其他开发人员,如果他们具有相同的 delphi 版本,他们可以 use/access 它们吗?或者以某种方式访问​​源代码?

这些只是可执行模块,例如 .exe 或 .dll 模块。它们与任何其他可执行模块一样安全。

If the clients copy these bpl files and give them to other developers, can they use/access them if they have the same delphi version?

是的。

Or in some ways access the source code?

没有。已编译的 bpl 包文件不包含源代码。