We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I found that the SDK calls generation_authorization to generate the signature when use shared key to access blob storage.
generation_authorization
azure-sdk-for-rust/sdk/storage/src/authorization/authorization_policy.rs
Line 46 in 0d09ed3
However, it directly uses the sha2 library to generate hmac hash.
sha2
Line 98 in 0d09ed3
But to support FIPS 140, please provide an option to use openssl to generate hmac hash.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I found that the SDK calls
generation_authorization
to generate the signature when use shared key to access blob storage.azure-sdk-for-rust/sdk/storage/src/authorization/authorization_policy.rs
Line 46 in 0d09ed3
However, it directly uses the
sha2
library to generate hmac hash.azure-sdk-for-rust/sdk/storage/src/authorization/authorization_policy.rs
Line 98 in 0d09ed3
But to support FIPS 140, please provide an option to use openssl to generate hmac hash.
The text was updated successfully, but these errors were encountered: