2
0

C API for hybrid passwords.

This commit is contained in:
Maarten Billemont
2017-08-04 10:43:46 -04:00
parent d6415277d0
commit 228f8e4ed1
7 changed files with 115 additions and 15 deletions

View File

@@ -132,3 +132,15 @@ static const char *mpw_sitePassword_v1(
return sitePassword;
}
const char *mpw_encrypt_v1(
MPMasterKey masterKey, const char *plainText) {
return NULL; // TODO: aes128_cbc
}
const char *mpw_decrypt_v1(
MPMasterKey masterKey, const char *cipherText) {
return NULL; // TODO: aes128_cbc
}