如何获取创建DB时传递的YDN-DB选项

时间:2014-03-05 09:14:19

标签: encryption crypt ydn-db

我有一个项目,在某些地方我需要使用传递加密的密钥。 我有这个:

            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);

是否有一些方法可以取回'SOME KEY',如:

        db2.getSchema(function(schema) {
            console.log(schema); //this return the Schema
        });

我需要这样的东西:

        db2.getOptions(function(options) {
            console.log(options);
        });

我需要重新使用地穴密钥

1 个答案:

答案 0 :(得分:0)

请在https://bitbucket.org/ytkyaw/ydn-db/issues?status=new&status=open

上提出问题

是的,它应该能够取回设定的内容。