repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_macaddr8.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.346155
/* * contrib/btree_gist/btree_macaddr8.c */ #include "postgres.h" #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/fmgrprotos.h" #include "utils/inet.h" #include "utils/rel.h" #include "utils/sortsupport.h" typedef struct { macaddr8 lower; macaddr8 upper; /* make struct size = sizeof(gbtreeke...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/amcheck/verify_common.h
null
null
null
null
null
null
C
2026-05-04T19:21:33.367603
/*------------------------------------------------------------------------- * * verify_common.h * Shared routines for amcheck verifications. * * Copyright (c) 2016-2025, PostgreSQL Global Development Group * * IDENTIFICATION * contrib/amcheck/verify_common.h * *---------------------------------------------...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_numeric.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.438443
/* * contrib/btree_gist/btree_numeric.c */ #include "postgres.h" #include <math.h> #include <float.h> #include "btree_gist.h" #include "btree_utils_var.h" #include "utils/builtins.h" #include "utils/numeric.h" #include "utils/rel.h" #include "utils/sortsupport.h" /* GiST support functions */ PG_FUNCTION_INFO_V1(gb...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_ts.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.517452
/* * contrib/btree_gist/btree_ts.c */ #include "postgres.h" #include <limits.h> #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/fmgrprotos.h" #include "utils/timestamp.h" #include "utils/float.h" #include "utils/rel.h" #include "utils/sortsupport.h" typedef struct { Timestamp lower; Timestam...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/bloom/blinsert.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.541363
/*------------------------------------------------------------------------- * * blinsert.c * Bloom index build and insert functions. * * Copyright (c) 2016-2025, PostgreSQL Global Development Group * * IDENTIFICATION * contrib/bloom/blinsert.c * *------------------------------------------------------------...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/amcheck/verify_heapam.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.582417
/*------------------------------------------------------------------------- * * verify_heapam.c * Functions to check postgresql heap relations for corruption * * Copyright (c) 2016-2025, PostgreSQL Global Development Group * * contrib/amcheck/verify_heapam.c *------------------------------------------------...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_utils_num.h
null
null
null
null
null
null
C
2026-05-04T19:21:33.740855
/* * contrib/btree_gist/btree_utils_num.h */ #ifndef __BTREE_UTILS_NUM_H__ #define __BTREE_UTILS_NUM_H__ #include <math.h> #include <float.h> #include "access/gist.h" #include "btree_gist.h" typedef char GBT_NUMKEY; /* Better readable key */ typedef struct { const GBT_NUMKEY *lower, *upper; } GBT_NUMKEY_R;...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_utils_var.c
null
null
null
null
null
null
C
2026-05-04T19:21:33.996372
/* * contrib/btree_gist/btree_utils_var.c */ #include "postgres.h" #include <math.h> #include <limits.h> #include <float.h> #include "btree_gist.h" #include "btree_utils_var.h" #include "mb/pg_wchar.h" #include "utils/rel.h" #include "varatt.h" /* used for key sorting */ typedef struct { int i; GBT_VARKEY *t; ...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_uuid.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.153731
/* * contrib/btree_gist/btree_uuid.c */ #include "postgres.h" #include "btree_gist.h" #include "btree_utils_num.h" #include "port/pg_bswap.h" #include "utils/rel.h" #include "utils/sortsupport.h" #include "utils/uuid.h" typedef struct { pg_uuid_t lower, upper; } uuidKEY; /* GiST support functions */ PG_FUNCT...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/citext/citext.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.187448
/* * contrib/citext/citext.c */ #include "postgres.h" #include "catalog/pg_collation.h" #include "common/hashfn.h" #include "fmgr.h" #include "utils/formatting.h" #include "utils/varlena.h" #include "varatt.h" PG_MODULE_MAGIC_EXT( .name = "citext", .version = PG_VERSION ); /* * ==================== * ...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/cube/cube.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.387046
/****************************************************************************** contrib/cube/cube.c This file contains routines that can be bound to a Postgres backend and called by the backend in the process of processing queries. The calling format for these routines is dictated by Postgres architecture. **...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_utils_num.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.471022
/* * contrib/btree_gist/btree_utils_num.c */ #include "postgres.h" #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/cash.h" #include "utils/date.h" #include "utils/timestamp.h" GISTENTRY * gbt_num_compress(GISTENTRY *entry, const gbtree_ninfo *tinfo) { GISTENTRY *retval; if (entry->leafkey)...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/dict_int/dict_int.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.607113
/*------------------------------------------------------------------------- * * dict_int.c * Text search dictionary for integers * * Copyright (c) 2007-2025, PostgreSQL Global Development Group * * IDENTIFICATION * contrib/dict_int/dict_int.c * *------------------------------------------------------------...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gin/btree_gin.c
null
null
null
null
null
null
C
2026-05-04T19:21:34.687497
/* * contrib/btree_gin/btree_gin.c */ #include "postgres.h" #include <limits.h> #include "access/stratnum.h" #include "utils/builtins.h" #include "utils/date.h" #include "utils/float.h" #include "utils/inet.h" #include "utils/numeric.h" #include "utils/timestamp.h" #include "utils/uuid.h" PG_MODULE_MAGIC_EXT( ...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_utils_var.h
null
null
null
null
null
null
C
2026-05-04T19:21:35.287440
/* * contrib/btree_gist/btree_utils_var.h */ #ifndef __BTREE_UTILS_VAR_H__ #define __BTREE_UTILS_VAR_H__ #include "access/gist.h" #include "btree_gist.h" /* Variable length key */ typedef bytea GBT_VARKEY; /* Better readable key */ typedef struct { bytea *lower, *upper; } GBT_VARKEY_R; /* * type descri...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/cube/cubedata.h
null
null
null
null
null
null
C
2026-05-04T19:21:35.436771
/* contrib/cube/cubedata.h */ /* * This limit is pretty arbitrary, but don't make it so large that you * risk overflow in sizing calculations. */ #define CUBE_MAX_DIM (100) typedef struct NDBOX { /* varlena header (do not touch directly!) */ int32 vl_len_; /*---------- * Header contains info about NDBOX. Fo...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/dict_xsyn/dict_xsyn.c
null
null
null
null
null
null
C
2026-05-04T19:21:36.010170
/*------------------------------------------------------------------------- * * dict_xsyn.c * Extended synonym dictionary * * Copyright (c) 2007-2025, PostgreSQL Global Development Group * * IDENTIFICATION * contrib/dict_xsyn/dict_xsyn.c * *-----------------------------------------------------------------...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/btree_gist/btree_interval.c
null
null
null
null
null
null
C
2026-05-04T19:21:38.653620
/* * contrib/btree_gist/btree_interval.c */ #include "postgres.h" #include "btree_gist.h" #include "btree_utils_num.h" #include "utils/fmgrprotos.h" #include "utils/rel.h" #include "utils/sortsupport.h" #include "utils/timestamp.h" typedef struct { Interval lower, upper; } intvKEY; /* GiST support functions *...
IvorySQL/IvorySQL
https://github.com/IvorySQL/IvorySQL
null
null
null
null
1,012
null
null
apache-2.0
null
null
null
null
null
null
null
contrib/dblink/dblink.c
null
null
null
null
null
null
C
2026-05-04T19:21:39.925186
/* * dblink.c * * Functions returning results from a remote database * * Joe Conway <mail@joeconway.com> * And contributors: * Darko Prenosil <Darko.Prenosil@finteh.hr> * Shridhar Daithankar <shridhar_daithankar@persistent.co.in> * * contrib/dblink/dblink.c * Copyright (c) 2001-2025, PostgreSQL Global Develo...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_graphics.h
null
null
null
null
null
null
C
2026-05-04T19:21:48.918602
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_app.c
null
null
null
null
null
null
C
2026-05-04T19:21:48.920253
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_clock.c
null
null
null
null
null
null
C
2026-05-04T19:21:48.920800
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_graphics.c
null
null
null
null
null
null
C
2026-05-04T19:21:48.938269
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_resources.h
null
null
null
null
null
null
C
2026-05-04T19:21:48.939624
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_tick_timer_service.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.028108
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_resources.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.029004
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_jerry_port.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.055691
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_jerry_api.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.079788
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_app.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.145951
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/emscripten_tick_timer_service.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.589022
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/shims.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.604839
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/emscripten/tests/test_custom_resources.c
null
null
null
null
null
null
C
2026-05-04T19:21:49.643595
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/FreeRTOS.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.644685
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/os/mutex.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.707088
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/portmacro.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.707593
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/queue.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.760483
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/task.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.835186
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/applib/applib_malloc.auto.h
null
null
null
null
null
null
C
2026-05-04T19:21:49.992249
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/sdl_graphics.c
null
null
null
null
null
null
C
2026-05-04T19:21:50.349254
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/examples/main.c
null
null
null
null
null
null
C
2026-05-04T19:21:50.350328
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/shims.c
null
null
null
null
null
null
C
2026-05-04T19:21:50.424798
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/sdl_app.h
null
null
null
null
null
null
C
2026-05-04T19:21:50.465931
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/sdl_graphics.h
null
null
null
null
null
null
C
2026-05-04T19:21:50.467342
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board.h
null
null
null
null
null
null
C
2026-05-04T19:21:50.702862
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
checkers/test-programs/syscall-test.c
null
null
null
null
null
null
C
2026-05-04T19:21:50.827661
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board_robert_bb.c
null
null
null
null
null
null
C
2026-05-04T19:21:51.255107
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board_robert_evt.c
null
null
null
null
null
null
C
2026-05-04T19:21:51.257307
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board_robert_evt.h
null
null
null
null
null
null
C
2026-05-04T19:21:51.355988
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board_definitions.h
null
null
null
null
null
null
C
2026-05-04T19:21:51.542193
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
checkers/test-programs/mutex-test.c
null
null
null
null
null
null
C
2026-05-04T19:21:51.659479
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/boot_tests.c
null
null
null
null
null
null
C
2026-05-04T19:21:51.680661
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/display.h
null
null
null
null
null
null
C
2026-05-04T19:21:51.746235
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/overrides/semphr.h
null
null
null
null
null
null
C
2026-05-04T19:21:51.797860
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/boot_tests.h
null
null
null
null
null
null
C
2026-05-04T19:21:52.877424
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/button_id.h
null
null
null
null
null
null
C
2026-05-04T19:21:52.879163
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/display.h
null
null
null
null
null
null
C
2026-05-04T19:21:53.082915
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/dbgserial.h
null
null
null
null
null
null
C
2026-05-04T19:21:53.083513
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/dbgserial.c
null
null
null
null
null
null
C
2026-05-04T19:21:53.085319
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/display/ice40lp.c
null
null
null
null
null
null
C
2026-05-04T19:21:53.996463
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/display/ice40lp.h
null
null
null
null
null
null
C
2026-05-04T19:21:54.209502
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/exti.inl.h
null
null
null
null
null
null
C
2026-05-04T19:21:54.210228
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/display/ice40lp_definitions.h
null
null
null
null
null
null
C
2026-05-04T19:21:54.210714
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/flash.h
null
null
null
null
null
null
C
2026-05-04T19:21:55.032713
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
applib-targets/sdl/sdl_app.c
null
null
null
null
null
null
C
2026-05-04T19:21:57.281561
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/button.h
null
null
null
null
null
null
C
2026-05-04T19:21:57.690303
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/board/board_robert_bb.h
null
null
null
null
null
null
C
2026-05-04T19:21:57.691558
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/button.c
null
null
null
null
null
null
C
2026-05-04T19:21:57.895684
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/display/boot_fpga.c
null
null
null
null
null
null
C
2026-05-04T19:21:58.037475
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
google/pebble
https://github.com/google/pebble
null
null
null
null
4,968
null
null
apache-2.0
null
null
null
null
null
null
null
platform/robert/boot/src/drivers/exti.h
null
null
null
null
null
null
C
2026-05-04T19:22:00.028079
/* * Copyright 2024 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to i...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/custom_x509_extensions.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.020238
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/cleanup.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.021266
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/renegotiate.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.053671
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/crl.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.061579
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompany...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/fingerprint.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.063924
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompany...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/npn.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.085410
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/events.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.086570
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/cert_authorities.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.106992
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
api/unstable/async_offload.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.243520
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompany...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/common.c
null
null
null
null
null
null
C
2026-05-04T19:22:08.652689
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/common.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.672191
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/https.c
null
null
null
null
null
null
C
2026-05-04T19:22:08.758141
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bindings/rust/standard/s2n-tls-sys-internal/wrapper.h
null
null
null
null
null
null
C
2026-05-04T19:22:08.759333
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 // This is a wrapper header file that includes all the necessary s2n-tls headers // for generating Rust bindings with bindgen // Core s2n header - ensures other headers can find it #include "api/s2n.h" // Inc...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/s2nc.c
null
null
null
null
null
null
C
2026-05-04T19:22:08.790348
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_aead_cipher_aes_gcm.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.298406
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
codebuild/bin/s2n_dynamic_load_test.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.324401
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_aead_cipher_chacha20_poly1305.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.367229
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_cbc_cipher_3des.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.411157
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/echo.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.442909
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_cbc_cipher_aes.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.614604
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
bin/policy.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.661913
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_certificate.c
null
null
null
null
null
null
C
2026-05-04T19:22:09.879269
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_cipher.h
null
null
null
null
null
null
C
2026-05-04T19:22:10.489451
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_crypto.c
null
null
null
null
null
null
C
2026-05-04T19:22:10.490272
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_composite_cipher_aes_sha.c
null
null
null
null
null
null
C
2026-05-04T19:22:10.492944
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_dhe.c
null
null
null
null
null
null
C
2026-05-04T19:22:10.690509
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_crypto.h
null
null
null
null
null
null
C
2026-05-04T19:22:10.798926
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_dhe.h
null
null
null
null
null
null
C
2026-05-04T19:22:11.423279
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_evp.h
null
null
null
null
null
null
C
2026-05-04T19:22:11.627807
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_evp_kem.h
null
null
null
null
null
null
C
2026-05-04T19:22:12.016518
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompany...
aws/s2n-tls
https://github.com/aws/s2n-tls
null
null
null
null
4,714
null
null
apache-2.0
null
null
null
null
null
null
null
crypto/s2n_fips.c
null
null
null
null
null
null
C
2026-05-04T19:22:12.207794
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file ...