11 lines
393 B
Dart
11 lines
393 B
Dart
// Copyright (c) 2023, Sudipto Chandra
|
|
// All rights reserved. Check LICENSE file for details.
|
|
|
|
/// Collection of hashing algorithms, checksum generators, message
|
|
/// authentication code (MAC) utilities and key derivation functions.
|
|
///
|
|
/// This library serves as a convenience export so that all supported
|
|
/// algorithms can be used with a single import.
|
|
library;
|
|
|
|
export 'src/hashlib.dart';
|