我有一个项目,在某些地方我需要使用传递的密钥进行加密。我有这个:
schema = {
stores: [store_schema_dominios, store_schema_fechas, store_schema_servidores]
};
var options = {
Encryption: {
//expiration: 1000*15, // optional data expiration in ms.
secrets: [{
name: 'usuario',
key: 'SOME KEY'
}]
}
};
db2 = new ydn.db.Storage(nombreBase,schema,options);
是否有一些方法可以找回“某些密钥”,例如:
db2.getSchema(function(schema) {
console.log(schema); //this return the Schema
});
我需要这样的东西:
db2.getOptions(function(options) {
console.log(options);
});
我需要重新使用 Crypt KEY