Context
I am trying to implement a set to cryptography functionality, compatible between Node.js (as expected server environment) and modern browser. Mostly it works as expected, except RSA-PSS keys import from Node to browser, but this issue is beyond the scope of this question.
Problem
我所期待的是工业标准/光谱,以储存任何种类(测量或私人)的加密钥匙和相关参数。
例如,如果关键加密与从异构体中得出的一个关键参数,那么如何适当储存诸如算法(PFKDF2)等信息,但后来可加以改动),则会变数、盐度或加密参数,例如作为AES-256-GCM的算法,以及第四数据。
I was hoping that webcrypto wrapKey and unwrapKey can give hint on that kind of standard, but all examples at MDN page seems to be assuming that storing this information together with this wrapped key data is beyond scope of what wrapKey and unwrapKey function do.
Looks like I just don t know how to properly to ask this question to web search engine. I expect that there is some industry standard or specification for that, plus I hope to avoid inventing yet another incompatible wheel.
说明: 我研究的是一些双向格式,而不是初等或其它文字表述。
提前感谢!