Skip to content

Commit

Permalink
kbkdf v0.0.1 (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Feb 4, 2025
1 parent 3eca225 commit 2beaaa3
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions kbkdf/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.0.1 (2025-02-04)
- Initial release
6 changes: 3 additions & 3 deletions kbkdf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "kbkdf"
version = "0.1.0"
edition = "2018"
version = "0.0.1"
edition = "2021"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/RustCrypto/KDFs/"
homepage = "https://github.com/RustCrypto/KDFs/tree/master/kbkdf"
repository = "https://github.com/RustCrypto/KDFs/"
description = "Key Derivation Using Pseudorandom Function (KBKDF)"
keywords = ["crypto", "KBKDF", "KDF"]
Expand Down
7 changes: 4 additions & 3 deletions kbkdf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

[![crate][crate-image]][crate-link]
[![Docs][docs-image]][docs-link]
[![Build Status][build-image]][build-link]
![Apache2/MIT licensed][license-image]
![Rust Version][rustc-image]
[![Project Chat][chat-image]][chat-link]
[![Build Status][build-image]][build-link]

Pure Rust implementation of the Key Based Key Derivation Function (KBKDF).
This function is described in section 4 of [NIST SP 800-108r1, Recommendation
Expand Down Expand Up @@ -69,9 +69,10 @@ dual licensed as above, without any additional terms or conditions.
[crate-link]: https://crates.io/crates/kbkdf
[docs-image]: https://docs.rs/kbkdf/badge.svg
[docs-link]: https://docs.rs/kbkdf/
[build-image]: https://github.com/RustCrypto/KDFs/actions/workflows/kbkdf.yml/badge.svg
[build-link]: https://github.com/RustCrypto/KDFs/actions/workflows/kbkdf.yml
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
[rustc-image]: https://img.shields.io/badge/rustc-1.81+-blue.svg
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg
[chat-link]: https://rustcrypto.zulipchat.com/#narrow/stream/260043-KDFs
[build-image]: https://github.com/RustCrypto/KDFs/workflows/kbkdf/badge.svg?branch=master&event=push
[build-link]: https://github.com/RustCrypto/KDFs/actions?query=workflow:kbkdf

0 comments on commit 2beaaa3

Please sign in to comment.