mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-23 11:16:57 -04:00
crypto: implement md5, which now used by sprof
This commit is contained in:
parent
9cc6be4d57
commit
a14dc6ed89
9 changed files with 431 additions and 5 deletions
|
@ -20,11 +20,11 @@
|
|||
|
||||
namespace ams::util {
|
||||
|
||||
constexpr bool IsLittleEndian() {
|
||||
consteval bool IsLittleEndian() {
|
||||
return std::endian::native == std::endian::little;
|
||||
}
|
||||
|
||||
constexpr bool IsBigEndian() {
|
||||
consteval bool IsBigEndian() {
|
||||
return std::endian::native == std::endian::big;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue