mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
fix!: Remove cryptographic builtins (#396)
Cryptographic builtins are removed due to various reasons like FIPS compliance. Users needing crypto builtins are encouraged to use extensions. Deprecated functions are also removed. Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
667cb0d90f
commit
9e43bd9878
@@ -56,13 +56,6 @@ fn get_extra_arg_impl(
|
||||
} else if let Some((_, n_args)) = BUILTINS.get(path.as_str()) {
|
||||
*n_args
|
||||
} else {
|
||||
#[cfg(feature = "deprecated")]
|
||||
if let Some((_, n_args)) = DEPRECATED.get(path.as_str()) {
|
||||
*n_args
|
||||
} else {
|
||||
return Ok(None);
|
||||
}
|
||||
#[cfg(not(feature = "deprecated"))]
|
||||
return Ok(None);
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user