diff options
Diffstat (limited to '3rd_party/libsrp6a-sha512/README.md')
-rw-r--r-- | 3rd_party/libsrp6a-sha512/README.md | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/3rd_party/libsrp6a-sha512/README.md b/3rd_party/libsrp6a-sha512/README.md new file mode 100644 index 0000000..4affe4a --- /dev/null +++ b/3rd_party/libsrp6a-sha512/README.md | |||
@@ -0,0 +1,35 @@ | |||
1 | # SRP6a-sha512 library | ||
2 | |||
3 | ## About | ||
4 | |||
5 | This library is based on Stanford's Secure Remote Password (SRP) protocol | ||
6 | implementation, or more precise on the `libsrp` part thereof. | ||
7 | The entire source code for the SRP project can be obtained from [here](https://github.com/secure-remote-password/stanford-srp). | ||
8 | |||
9 | It has been adapted to the needs of the libimobiledevice project, and | ||
10 | contains just a part of the original code; it only supports the SRP6a | ||
11 | client method which has been modified to use SHA512 instead of SHA1. | ||
12 | The only supported SRP method is `SRP6a_sha512_client_method()`. | ||
13 | Besides that, support for MbedTLS has been added. | ||
14 | |||
15 | Also, all server-side code has been removed, and the client-side code | ||
16 | has been reduced to a minimum, so that basically only the following | ||
17 | functions remain operational: | ||
18 | |||
19 | - `SRP_initialize_library` | ||
20 | - `SRP_new` | ||
21 | - `SRP_free` | ||
22 | - `SRP_set_user_raw` | ||
23 | - `SRP_set_params` | ||
24 | - `SRP_set_auth_password` | ||
25 | - `SRP_gen_pub` | ||
26 | - `SRP_compute_key` | ||
27 | - `SRP_respond` | ||
28 | - `SRP_verify` | ||
29 | |||
30 | Anything else has not been tested and must be considered non-functional. | ||
31 | |||
32 | ## License | ||
33 | |||
34 | The license of the original work does still apply and can be found in the | ||
35 | LICENSE file that comes with the code. | ||