Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Merge requests
!415
change(micropython): Use CSPRNG to seed MP RNG
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
change(micropython): Use CSPRNG to seed MP RNG
schneider/36-mp-random
into
master
Overview
1
Commits
1
Pipelines
1
Changes
2
Merged
schneider
requested to merge
schneider/36-mp-random
into
master
4 years ago
Overview
1
Commits
1
Pipelines
1
Changes
2
Expand
Closes
#36 (closed)
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
73919274
1 commit,
4 years ago
2 files
+
5
−
5
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
pycardium/mpconfigport.h
+
2
−
2
Options
@@ -31,7 +31,7 @@
#define MICROPY_MODULE_WEAK_LINKS (1)
/* urandom init */
int
mp_hal_
t
rng_read_int
(
void
);
int
mp_hal_
csp
rng_read_int
(
void
);
/* Builtin function and modules */
#define MICROPY_PY_ALL_SPECIAL_METHODS (1)
@@ -43,7 +43,7 @@ int mp_hal_trng_read_int(void);
#define MICROPY_PY_UJSON (1)
#define MICROPY_PY_URANDOM (1)
#define MICROPY_PY_URANDOM_EXTRA_FUNCS (1)
#define MICROPY_PY_URANDOM_SEED_INIT_FUNC (mp_hal_
t
rng_read_int())
#define MICROPY_PY_URANDOM_SEED_INIT_FUNC (mp_hal_
csp
rng_read_int())
#define MICROPY_PY_URE (1)
#define MICROPY_PY_URE_MATCH_GROUPS (1)
#define MICROPY_PY_URE_MATCH_SPAN_START_END (1)
Loading