esp-ble-prov
Version:
ESP32 provisioning with WebBluetooth
11 lines (10 loc) • 380 B
TypeScript
import Security from "./security";
export default class Security2 extends Security {
constructor();
setup0Request(): Promise<Uint8Array> | Uint8Array;
setup0Response(response: Uint8Array): void;
setup1Request(): Uint8Array;
setup1Response(response: Uint8Array): void;
encrypt(buffer: Uint8Array): Uint8Array;
decrypt(buffer: Uint8Array): Uint8Array;
}