Skip to content

Commit

Permalink
Switch sha512 to use fastpath with wasm (#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo committed Mar 21, 2024
1 parent f059196 commit 69d13c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/sha512.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import 'dart:convert';
import 'digest.dart';
import 'hash.dart';
// ignore: uri_does_not_exist
import 'sha512_fastsinks.dart' if (dart.library.js) 'sha512_slowsinks.dart';
import 'sha512_fastsinks.dart' if (dart.library.html) 'sha512_slowsinks.dart';
import 'utils.dart';

/// An implementation of the [SHA-384][rfc] hash function.
Expand Down

0 comments on commit 69d13c9

Please sign in to comment.