File tree Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Expand file tree Collapse file tree 3 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## Version 0.2.5 (2023-06-07)
4
+ - Updates ` kotlincrypto.core ` to ` 0.2.5 ` [[ #31 ]] [ 31 ]
5
+ - Fix for Android API 23 and below not accepting ` null ` for ` Mac.init ` key
6
+ parameter [[ core #38 ]] [ core-38 ]
7
+ - Updates ` kotlincrypto.hash ` to ` 0.2.5 ` [[ #31 ]] [ 31 ]
8
+ - Updates ` kotlin ` to ` 1.8.21 ` [[ #31 ]] [ 31 ]
9
+ - ` Hmac ` now ** always** copies provided key bytes and blanks the copy
10
+ after deriving ` iKey ` and ` oKey ` [[ #32 ]] [ 32 ]
11
+
3
12
## Version 0.2.4 (2023-04-16)
4
13
- Updates ` kotlincrypto.core ` to ` 0.2.4 `
5
14
- Updates ` kotlincrypto.hash ` to ` 0.2.4 `
41
50
## Version 0.1.0 (2023-03-05)
42
51
- Initial Release
43
52
53
+ [ core-38 ] : https://github.com/KotlinCrypto/core/pull/38
44
54
[ 21 ] : https://github.com/KotlinCrypto/MACs/pull/21
45
55
[ 23 ] : https://github.com/KotlinCrypto/MACs/pull/23
46
56
[ 26 ] : https://github.com/KotlinCrypto/MACs/pull/26
57
+ [ 31 ] : https://github.com/KotlinCrypto/MACs/pull/31
58
+ [ 32 ] : https://github.com/KotlinCrypto/MACs/pull/32
Original file line number Diff line number Diff line change @@ -118,7 +118,7 @@ shown below.
118
118
// build.gradle.kts
119
119
dependencies {
120
120
// define the BOM and its version
121
- implementation(platform(" org.kotlincrypto.macs:bom:0.2.4 " ))
121
+ implementation(platform(" org.kotlincrypto.macs:bom:0.2.5 " ))
122
122
123
123
// define artifacts without version
124
124
@@ -141,13 +141,13 @@ dependencies {
141
141
```
142
142
143
143
<!-- TAG_VERSION -->
144
- [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.4 -blue.svg?style=flat
144
+ [ badge-latest-release ] : https://img.shields.io/badge/latest--release-0.2.5 -blue.svg?style=flat
145
145
[ badge-license ] : https://img.shields.io/badge/license-Apache%20License%202.0-blue.svg?style=flat
146
146
147
147
<!-- TAG_DEPENDENCIES -->
148
- [ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.8.10 -blue.svg?logo=kotlin
149
- [ badge-core ] : https://img.shields.io/badge/kotlincrypto.core-0.2.4 -blue.svg
150
- [ badge-hash ] : https://img.shields.io/badge/kotlincrypto.hash-0.2.4 -blue.svg
148
+ [ badge-kotlin ] : https://img.shields.io/badge/kotlin-1.8.21 -blue.svg?logo=kotlin
149
+ [ badge-core ] : https://img.shields.io/badge/kotlincrypto.core-0.2.5 -blue.svg
150
+ [ badge-hash ] : https://img.shields.io/badge/kotlincrypto.hash-0.2.5 -blue.svg
151
151
152
152
<!-- TAG_PLATFORMS -->
153
153
[ badge-platform-android ] : http://img.shields.io/badge/-android-6EDB8D.svg?style=flat
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ POM_DEVELOPER_ID=KotlinCrypto
29
29
POM_DEVELOPER_NAME =Kotlin Crypto
30
30
POM_DEVELOPER_URL =https://github.com/KotlinCrypto/
31
31
32
- VERSION_NAME =0.2.5-SNAPSHOT
32
+ VERSION_NAME =0.2.5
33
33
# 0.1.0-alpha01 = 00 01 00 11
34
34
# 0.1.0-beta01 = 00 01 00 21
35
35
# 0.1.0-rc01 = 00 01 00 31
You can’t perform that action at this time.
0 commit comments