Lines Matching refs:config
26 function direct(config) {
27 const { cipher, key, iv, aad, authTagLength, plaintextLength } = config;
42 function mstream(config) {
43 const { cipher, key, iv, aad, authTagLength, plaintextLength } = config;
73 function fstream(config) {
77 const { cipher, key, iv, aad, authTagLength, plaintextLength } = config;
118 function test(config) {
119 direct(config);
120 mstream(config);
121 fstream(config);