s2n_map.h 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
  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. * A copy of the License is located at
  7. *
  8. * http://aws.amazon.com/apache2.0
  9. *
  10. * or in the "license" file accompanying this file. This file is distributed
  11. * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
  12. * express or implied. See the License for the specific language governing
  13. * permissions and limitations under the License.
  14. */
  15. #pragma once
  16. #include <string.h>
  17. #include "crypto/s2n_hash.h"
  18. #include "utils/s2n_blob.h"
  19. #include "utils/s2n_result.h"
  20. struct s2n_map;
  21. struct s2n_map *s2n_map_new();
  22. struct s2n_map *s2n_map_new_with_initial_capacity(uint32_t capacity);
  23. S2N_RESULT s2n_map_add(struct s2n_map *map, struct s2n_blob *key, struct s2n_blob *value);
  24. S2N_RESULT s2n_map_put(struct s2n_map *map, struct s2n_blob *key, struct s2n_blob *value);
  25. S2N_RESULT s2n_map_complete(struct s2n_map *map);
  26. S2N_RESULT s2n_map_unlock(struct s2n_map *map);
  27. S2N_RESULT s2n_map_lookup(const struct s2n_map *map, struct s2n_blob *key, struct s2n_blob *value, bool *key_found);
  28. S2N_RESULT s2n_map_free(struct s2n_map *map);