- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有 C++ 代码。如何使用 nodejs
模块 ffi
、ref
、ref-struct
、ref-array
CK_BBOOL yes = CK_TRUE;
CK_BBOOL no = CK_FALSE;
// encryption/decryption sensitive key
CK_ATTRIBUTE key_template[] = {
{CKA_SENSITIVE, &yes, sizeof(CK_BBOOL)}, // key is sensitive: should not be readable
{CKA_ENCRYPT, &yes, sizeof(CK_BBOOL)} , // key can encrypt data
{CKA_DECRYPT, &yes, sizeof(CK_BBOOL)} , // key can decrypt data
};
CK_OBJECT_HANDLE key; // key handle for the new key
CK_MECHANISM gen_mec = {CKM_DES_KEY_GEN, NULL_PTR, 0}; // DES key
C_GenerateKey(session, &gen_mec, key_template, 3, &key); // generates the key
if (rv != CKR_OK) {
printf("Something went wrong while generating the key: %lu\n",rv);
exit(1);
} else
printf("Key generated!\n");
// now key 'points' to the freshly generated key
有关更多详细信息,请参阅 PKCS11 函数。
我的 JavaScript 代码是
var Templates = RefArray(CKI.CK_ATTRIBUTE);
var valueLen = new Buffer(4);
valueLen.writeUInt32LE(32, 0);
valueLen.type = CKI.CK_ULONG; //ulong
var bTrue = new Buffer(1);
bTrue.writeUInt8(1, 0);
bTrue.type = CKI.CK_BYTE; //uchar
var template0 = new CKI.CK_ATTRIBUTE({type: CKI.CKA_SENSITIVE, pValue: bTrue.ref(), ulValueLen: 1});
var template1 = new CKI.CK_ATTRIBUTE({type: CKI.CKA_VALUE_LEN, pValue: valueLen.ref(), ulValueLen: 4});
var template2 = new CKI.CK_ATTRIBUTE({type: CKI.CKA_ENCRYPT, pValue: bTrue.ref(), ulValueLen: 1});
var template3 = new CKI.CK_ATTRIBUTE({type: CKI.CKA_DECRYPT, pValue: bTrue.ref(), ulValueLen: 1});
var templates = new Templates(4);
templates[0] = template0;
templates[1] = template2;
templates[2] = template3;
templates[3] = template1;
var $hObject = Ref.alloc(CKI.CK_ULONG);
Debug('C_GenerateKey');
var res = this.cki.C_GenerateKey(this.handle, mech.ref(), templates.ref(), 4, $hObject);
Utils.check_cki_res(res, 'C_GenerateKey');
针对 CKK_AES_KEY_GEN
机制运行此代码后,C_GenerateKey
返回错误Cryptoki 函数 C_GenerateKey 出错。错误是 TemplateIncomplete(208)
最佳答案
我解决了我的问题。我的错误是 ref-array
使用错误(或者是 ref-array
问题)。这是我的数组创建的示例
var buf = [];
function attr(t, v, l){
return (new CKI.CK_ATTRIBUTE({ type: t, pValue: v, ulValueLen: l })).ref()
}
buf.push(attr(CKI.CKA_CLASS, secretKey.ref(), 8));
buf.push(attr(CKI.CKA_TOKEN, bTrue.ref(), 1));
buf.push(attr(CKI.CKA_SENSITIVE, bTrue.ref(), 1));
buf.push(attr(CKI.CKA_VALUE_LEN, valueLen.ref(), 8));
buf.push(attr(CKI.CKA_KEY_TYPE, secretKey.ref(), 8));
buf.push(attr(CKI.CKA_LABEL, new Buffer("testAES"), 7));
buf.push(attr(CKI.CKA_PRIVATE, bTrue.ref(), 1));
var buf = Buffer.concat(buf);
var res = this.cki.C_GenerateKey(this.handle, mech.ref(), buf, 7, $hObject);
一切正常。我将日志打印到文件中进行检查。对于 pkcs11
日志记录,我使用 pkcs11-logger (这非常有帮助)。这是来自 C_GenerateKey
函数的日志
0x000006e5 : 0x0708e740 : *** Begin attribute template ***
0x000006e5 : 0x0708e740 : Attribute 0
0x000006e5 : 0x0708e740 : Attribute: 0 (CKA_CLASS)
0x000006e5 : 0x0708e740 : pValue: 0x1bc2768
0x000006e5 : 0x0708e740 : ulValueLen: 8
0x000006e5 : 0x0708e740 : *pValue: HEX(A826BC0100000000)
0x000006e5 : 0x0708e740 : Attribute 1
0x000006e5 : 0x0708e740 : Attribute: 1 (CKA_TOKEN)
0x000006e5 : 0x0708e740 : pValue: 0x1bc2788
0x000006e5 : 0x0708e740 : ulValueLen: 1
0x000006e5 : 0x0708e740 : *pValue: HEX(B8)
0x000006e5 : 0x0708e740 : Attribute 2
0x000006e5 : 0x0708e740 : Attribute: 259 (CKA_SENSITIVE)
0x000006e5 : 0x0708e740 : pValue: 0x1bc27a8
0x000006e5 : 0x0708e740 : ulValueLen: 1
0x000006e5 : 0x0708e740 : *pValue: HEX(B8)
0x000006e5 : 0x0708e740 : Attribute 3
0x000006e5 : 0x0708e740 : Attribute: 353 (CKA_VALUE_LEN)
0x000006e5 : 0x0708e740 : pValue: 0x1bc27c8
0x000006e5 : 0x0708e740 : ulValueLen: 8
0x000006e5 : 0x0708e740 : *pValue: HEX(A026BC0100000000)
0x000006e5 : 0x0708e740 : Attribute 4
0x000006e5 : 0x0708e740 : Attribute: 256 (CKA_KEY_TYPE)
0x000006e5 : 0x0708e740 : pValue: 0x1bc27e8
0x000006e5 : 0x0708e740 : ulValueLen: 8
0x000006e5 : 0x0708e740 : *pValue: HEX(A826BC0100000000)
0x000006e5 : 0x0708e740 : Attribute 5
0x000006e5 : 0x0708e740 : Attribute: 3 (CKA_LABEL)
0x000006e5 : 0x0708e740 : pValue: 0x1bc2808
0x000006e5 : 0x0708e740 : ulValueLen: 7
0x000006e5 : 0x0708e740 : *pValue: HEX(74657374414553)
0x000006e5 : 0x0708e740 : Attribute 6
0x000006e5 : 0x0708e740 : Attribute: 2 (CKA_PRIVATE)
0x000006e5 : 0x0708e740 : pValue: 0x1bc2828
0x000006e5 : 0x0708e740 : ulValueLen: 1
0x000006e5 : 0x0708e740 : *pValue: HEX(B8)
0x000006e5 : 0x0708e740 : *** End attribute template ***
关于node.js - NodeJS FFI - 创建结构数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33110354/
我正在努力通过接受 void 的 FFI 传递结构并在另一端读回它。 有问题的库是 libtsm,一个终端状态机。它允许您提供输入,然后找出输入后终端将处于哪种状态。 它将其绘制函数声明为: pub
只是为了测试目的,我在 delphi 中创建了一个小的 DLL。代码为: library MyDll; uses SysUtils, Classes, Vcl.Dialogs;
这是我一直好奇的事情:我想知道 LuaJIT 的 FFI 模块如何设法使用正确的调用约定来调用外部 native 函数,而无需在用户原型(prototype)中进行任何声明。 我尝试阅读源代码以自己解
我有一个带有函数的 C 库,在一个不透明的结构上运行,定义如下: Foo* makeFoo(); // create a new Foo Foo* dupFoo(const Foo* orig); /
我正在尝试从 purescript 调用 navigator.geolocation.getCurrentPosition javascript 函数,但遇到了两个问题。 在 javascript 中
ruby 版本 2.2.4p230 RubyGem 版本 2.7.2 已安装 Ruby-devel 和 lib64ffi-devel。 使用 64 位 OpenMandriva 3.0、urpmi 和
我正在尝试使用 FFI 将以下 JavaScript 函数导入 PureScript: function getGreeting() { return "Hi, welcome to the sh
我对 Haskell 中的 FFI 有一些疑问 我知道我必须使用语言编译指示 {-# LANGUAGE ForeignFunctionInterface #-}但是当我使用 {-# LANGUAGE
当我尝试构建 Flutter项目至 IOS 它向我显示了这个错误,我尝试清理并尝试更改项目的目录。 Launching lib/main.dart on iPhone 12 Pro Max in de
完整堆栈跟踪: /Users/galharth/.rvm/gems/ruby-2.3.0/gems/activesupport-4.2.5/lib/active_support/dependencie
我试过运行 pod install在我的 Xcode 项目中,但出现以下错误 /System/Library/Frameworks/Ruby.framework/Versions/2.6/us
我需要在节点 Electron 项目中使用模块“ffi”。我可以使用“gyp”重建它并在节点中使用库,但我不能使用“electron-rebuild”重建它并在 Electron 中使用它。 我跑了:
以下警告是什么意思,我该如何解决它的原因? Warning: Unimplemented primitive used:removeEventListener 在 [@bs.val] external
谁能告诉我一个使用带有可变参数的 C 函数(例如 printf )和 Haskell 的外部函数接口(interface)的示例?我尝试搜索 HaskellWiki,但没有找到这样的示例。 谢谢! 最
我使用 FFI 是为了在 C 中使用一个函数,该函数接受一个结构并返回相同的结构。我看到的引用说我必须使用指向这些结构的指针才能将其导入 Haskell。所以,例如。 data Bar = Bar {
我想在带有 FFI 的 Rust 中包含一个动态 C 库。 该库实际上也是用 Rust 构建的,但公开了一个 C 接口(interface),因此它也可以从其他语言中使用。当我用 cargo 构建库(
我试图在winapi上写一个包装器。我想包装接受回调函数指针的函数。 例如,考虑以下情况: // The unsafe callback type the FFI function accepts t
我正在使用 rust-bindgen 从 Rust 访问 C 库。一些函数返回指向结构的可空指针,bindgen 表示为 extern "C" { pub fn get_some_data()
介绍 我正在用 inline-c 包装一个 C 数值库;一些函数可以将回调传递给步骤例程,考虑 ODE 的优化或时间积分。 特别是在原生 C 中,使用回调可以对连续数组进行操作,通过指针修改它们,并将
fn main() { let val = 0; unsafe { foo(&val) } } extern "C" { pub fn foo(val: *const u32)
我是一名优秀的程序员,十分优秀!