mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-22 06:49:11 +00:00
7 lines
224 B
Dart
7 lines
224 B
Dart
|
import 'dart:convert';
|
||
|
|
||
|
String encodeBase64UserPass(String user, String pass) {
|
||
|
String credentials = "$user:$pass";
|
||
|
Codec<String, String> stringToBase64 = utf8.fuse(base64);
|
||
|
return stringToBase64.encode(credentials);
|
||
|
}
|