Skip to content

Commit

Permalink
Add ECC support for PKCS11. (#259)
Browse files Browse the repository at this point in the history
Update aws-crt dependency to get support. Actual implementation comes from PR awslabs/aws-c-io#479

Co-authored-by: @JamieHunter
  • Loading branch information
graebm authored Apr 14, 2022
1 parent a5dfadb commit 745d78d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ mvn clean install
# NOTE: use the latest version of the CRT here


git clone --branch v0.16.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
git clone --branch v0.16.4 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
git clone https://github.com/awslabs/aws-iot-device-sdk-java-v2.git
cd aws-crt-java
mvn install -Dmaven.test.skip=true
Expand All @@ -86,7 +86,7 @@ Supports API 26 or newer.
NOTE: The shadow sample does not currently complete on android due to its dependence on stdin keyboard input.

``` sh
git clone --branch v0.16.3 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
git clone --branch v0.16.4 --recurse-submodules https://github.com/awslabs/aws-crt-java.git
git clone https://github.com/awslabs/aws-iot-device-sdk-java-v2.git
cd aws-crt-java/android
./gradlew connectedCheck # optional, will run the unit tests on any connected devices/emulators
Expand All @@ -107,7 +107,7 @@ repositories {
}
dependencies {
implementation 'software.amazon.awssdk.crt:android:0.16.3'
implementation 'software.amazon.awssdk.crt:android:0.16.4'
}
```
#### Caution
Expand Down
2 changes: 1 addition & 1 deletion android/iotdevicesdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ repositories {
}

dependencies {
api 'software.amazon.awssdk.crt:aws-crt-android:0.16.3'
api 'software.amazon.awssdk.crt:aws-crt-android:0.16.4'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
Expand Down
2 changes: 1 addition & 1 deletion sdk/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<dependency>
<groupId>software.amazon.awssdk.crt</groupId>
<artifactId>aws-crt</artifactId>
<version>0.16.3</version>
<version>0.16.4</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
Expand Down

0 comments on commit 745d78d

Please sign in to comment.