ScryptParameters.cpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Copyright (C) 2016 The Android Open Source Project
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. #include "ScryptParameters.h"
  17. #include <stdlib.h>
  18. #include <string.h>
  19. bool parse_scrypt_parameters(const char* paramstr, int* Nf, int* rf, int* pf) {
  20. int params[3] = {};
  21. char* token;
  22. char* saveptr;
  23. int i;
  24. /*
  25. * The token we're looking for should be three integers separated by
  26. * colons (e.g., "12:8:1"). Scan the property to make sure it matches.
  27. */
  28. for (i = 0, token = strtok_r(const_cast<char*>(paramstr), ":", &saveptr);
  29. token != nullptr && i < 3; i++, token = strtok_r(nullptr, ":", &saveptr)) {
  30. char* endptr;
  31. params[i] = strtol(token, &endptr, 10);
  32. /*
  33. * Check that there was a valid number and it's 8-bit.
  34. */
  35. if ((*token == '\0') || (*endptr != '\0') || params[i] < 0 || params[i] > 255) {
  36. return false;
  37. }
  38. }
  39. if (token != nullptr) {
  40. return false;
  41. }
  42. *Nf = params[0];
  43. *rf = params[1];
  44. *pf = params[2];
  45. return true;
  46. }