diff options
author | Brian Warner <warner@lothar.com> | 2018-12-06 11:17:51 -0800 |
---|---|---|
committer | Brian Warner <warner@lothar.com> | 2018-12-06 14:55:24 -0800 |
commit | dcf4842af1070da895f3b458e6fe620ee584d0e7 (patch) | |
tree | 861420e21ae062c8a1cbf67d6699cfa3d995f8bd | |
parent | c4cbd555a7e58c11187bedfebca1614b16765188 (diff) | |
download | PAKEs-dcf4842af1070da895f3b458e6fe620ee584d0e7.tar.xz |
reformat using rustfmt from latest 1.31.0
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | spake2/src/lib.rs | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 6105937..8e99551 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ rust: - nightly matrix: include: - - rust: 1.30.0 # lock down for consistent rustfmt behavior + - rust: 1.31.0 # lock down for consistent rustfmt behavior env: RUSTFMT install: - rustup component add rustfmt-preview diff --git a/spake2/src/lib.rs b/spake2/src/lib.rs index 0bcfd6d..4ef7ad5 100644 --- a/spake2/src/lib.rs +++ b/spake2/src/lib.rs @@ -397,7 +397,8 @@ impl Group for Ed25519Group { 0x15, 0xcf, 0xd1, 0x8e, 0x38, 0x59, 0x52, 0x98, 0x2b, 0x6a, 0x8f, 0x8c, 0x78, 0x54, 0x96, 0x3b, 0x58, 0xe3, 0x43, 0x88, 0xc8, 0xe6, 0xda, 0xe8, 0x91, 0xdb, 0x75, 0x64, 0x81, 0xa0, 0x23, 0x12, - ]).decompress() + ]) + .decompress() .unwrap() } @@ -408,7 +409,8 @@ impl Group for Ed25519Group { 0xf0, 0x4f, 0x2e, 0x7e, 0xb7, 0x34, 0xb2, 0xa8, 0xf8, 0xb4, 0x72, 0xea, 0xf9, 0xc3, 0xc6, 0x32, 0x57, 0x6a, 0xc6, 0x4a, 0xea, 0x65, 0x0b, 0x49, 0x6a, 0x8a, 0x20, 0xff, 0x00, 0xe5, 0x83, 0xc3, - ]).decompress() + ]) + .decompress() .unwrap() } @@ -419,7 +421,8 @@ impl Group for Ed25519Group { 0x6f, 0x00, 0xda, 0xe8, 0x7c, 0x1b, 0xe1, 0xa7, 0x3b, 0x59, 0x22, 0xef, 0x43, 0x1c, 0xd8, 0xf5, 0x78, 0x79, 0x56, 0x9c, 0x22, 0x2d, 0x22, 0xb1, 0xcd, 0x71, 0xe8, 0x54, 0x6a, 0xb8, 0xe6, 0xf1, - ]).decompress() + ]) + .decompress() .unwrap() } |