blob: 1f90ef659192fa04dd390b7d7fefc2d7357ee71d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* tslint:disable */
/* eslint-disable */
/**
* @returns {Uint8Array}
*/
export function get_odoh_config(): Uint8Array;
/**
* @param {Uint8Array} odoh_encrypted_query_msg
* @returns {Uint8Array}
*/
export function decrypt_query(odoh_encrypted_query_msg: Uint8Array): Uint8Array;
/**
* @param {Uint8Array} response
* @returns {Uint8Array}
*/
export function create_response(response: Uint8Array): Uint8Array;
|