Difference between revisions of "Wallet Best Practice"

From MgmtWiki
Jump to: navigation, search
(Created page with "==Full Title or Meme== This is a design that will meet the requirements of North American governments. * [https://aws.amazon.com/blogs/security/aws-lc-is-now-fips-140-3-cert...")
 
(Solutions)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
==Full Title or Meme==
 
==Full Title or Meme==
 
+
Rules for building wallets that will be safe.
 +
==Context==
 
This is a design that will meet the requirements of North American governments.
 
This is a design that will meet the requirements of North American governments.
  
 
* [https://aws.amazon.com/blogs/security/aws-lc-is-now-fips-140-3-certified/ AWS-LC is now FIPS 140-3 certified]
 
* [https://aws.amazon.com/blogs/security/aws-lc-is-now-fips-140-3-certified/ AWS-LC is now FIPS 140-3 certified]
 +
 +
AWS-LC FIPS 140-3 certificate: AWS-LC is an open source cryptographic library that is a fork from Google’s BoringSSL.1 It has been validated by NIST as a FIPS 140-3, level 1, cryptographic module, which is the latest and most stringent version of the standard for cryptographic modules for the U.S. and Canadian Federal governments.
 +
Performance and security benefits: AWS-LC is tailored by the AWS Cryptography team to meet the needs of AWS services, which require fast and verified cryptography. It includes low-level implementations that target 64-bit Arm and x86 processors, which improve the performance of AWS services such as Amazon S3. It also integrates CPU-Jitter as the source of entropy, which ensures the security strength of the keys it generates.2
 +
Future integrations and versions: AWS-LC provides an API for direct integration with C and C++ applications. It will also be integrated with aws-lc-rs and ACCP 2.0 libraries, which are compatible with Rust and Java applications respectively. AWS is committed to maintaining and validating new versions of the AWS-LC FIPS module as it grows.3
 +
 
* Google open source to OWF
 
* Google open source to OWF
 +
* https://github.com/google/identity-credential
 +
==Solutions==
 +
* 2024-08-06 [https://github.com/openwallet-foundation/safe-wallet-sig/blob/main/docs/wallet-safety-guide.md OWF Wallet Safety Guide]  Mostly a collection of high level principles that are not actionable.
 +
 +
==References==
 +
[[Category: Best Practice]]
 +
 +
* See wiki page on [[Cybersecurity Framework for Mobile Credentials]].
 +
 +
[[Category: Best Practice‏‎]]
 +
[[Category: Mobile]]

Latest revision as of 17:43, 26 October 2024

Full Title or Meme

Rules for building wallets that will be safe.

Context

This is a design that will meet the requirements of North American governments.

AWS-LC FIPS 140-3 certificate: AWS-LC is an open source cryptographic library that is a fork from Google’s BoringSSL.1 It has been validated by NIST as a FIPS 140-3, level 1, cryptographic module, which is the latest and most stringent version of the standard for cryptographic modules for the U.S. and Canadian Federal governments. Performance and security benefits: AWS-LC is tailored by the AWS Cryptography team to meet the needs of AWS services, which require fast and verified cryptography. It includes low-level implementations that target 64-bit Arm and x86 processors, which improve the performance of AWS services such as Amazon S3. It also integrates CPU-Jitter as the source of entropy, which ensures the security strength of the keys it generates.2 Future integrations and versions: AWS-LC provides an API for direct integration with C and C++ applications. It will also be integrated with aws-lc-rs and ACCP 2.0 libraries, which are compatible with Rust and Java applications respectively. AWS is committed to maintaining and validating new versions of the AWS-LC FIPS module as it grows.3

Solutions

References