Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cpufeatures: remove AArch64 crypto target feature #594

Merged
merged 1 commit into from
Aug 26, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions cpufeatures/src/aarch64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ macro_rules! __expand_check_macro {
#[cfg(target_os = "linux")]
__expand_check_macro! {
("aes", AES), // Enable AES support.
("crypto", CRYPTO), // Enable cryptographic instructions.
("sha2", SHA2), // Enable SHA1 and SHA256 support.
("sha3", SHA3), // Enable SHA512 and SHA3 support.
}
Expand Down Expand Up @@ -107,9 +106,6 @@ macro_rules! check {
("aes") => {
true
};
("crypto") => {
true
};
("sha2") => {
true
};
Expand Down Expand Up @@ -158,9 +154,6 @@ macro_rules! check {
("aes") => {
true
};
("crypto") => {
true
};
("sha2") => {
true
};
Expand Down