Donovan Hide

Results 28 comments of Donovan Hide

https://datatracker.ietf.org/doc/html/rfc5280#section-4.1.2.1 > This field describes the version of the encoded certificate. When > extensions are used, as expected in this profile, version MUST be 3 > (value is 2). If...

Bear in mind that this is only for the self-signed certificate. not the one that can be specified in the configuration file. https://github.com/ripple/rippled/blob/9d89d4c1885e13e3c0aa7cdb4a389c6fbfd3790a/src/ripple/basics/impl/make_SSLContext.cpp#L268-L283 It is notable that a lot of...

Also seeing this or a related issue with currency codes containing a number: Spec: https://xrpl.org/currency-formats.html#standard-currency-codes Does not match used regex: https://github.com/XRPLF/rippled/blob/develop/src/ripple/net/impl/RPCCall.cpp#L124 `alpha` should be `alnum` with other permitted characters added....

I installed `libprotoc-dev` manually using `apt-get install` to prevent the following error being generated by `cmake ..`: ``` ... CMake Error at Builds/CMake/CMakeFuncs.cmake:158 (file): Error evaluating generator expression: $ Target...

@nullstyle An interesting counterexample of reusing two ed25519 public keys to create a key exchange for nacl box: https://github.com/dchest/ed2curve-js Also supported in agl's Go package: https://github.com/agl/ed25519/blob/master/extra25519/extra25519.go Clever stuff :-)

Worth a read: https://nacl.cr.yp.to/box.html The issue worth thinking about is correctly choosing the nonce. Given two accounts A and B, each with an attached account sequence number at the point...

Hi, it would be great if this PR got pushed through, it is a major complication for dealing with newly created AMM's which haven't yet traded. Workaround at the moment...

Possibly this needs to be less than or equal to zero, or the rounding and/or floating point backwards and forwards needs to be fixed: https://github.com/XRPLF/rippled/blob/f4da2e31d93e921f1742a6c7c2120409cba4810e/src/ripple/app/tx/impl/AMMWithdraw.cpp#L385

Also having issues with building abseil on Apple Silicon with Clang 17: ``` ... clang++: error: unsupported option '-msse4.1' for target 'arm64-apple-darwin24.4.0' make[2]: *** [absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/internal/randen_hwaes.cc.o] Error 1 make[1]: *** [absl/random/CMakeFiles/random_internal_randen_hwaes_impl.dir/all]...