Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 188
Minor post-transfer changes#1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| language: rust | ||
| matrix: | ||
| include: | ||
| - rust: 1.27.0 | ||
| - rust: stable | ||
| - rust: nightly | ||
| script: | ||
| - cargo test --verbose --all --release | ||
| cache: cargo |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,13 +1,13 @@ | ||
| [package] | ||
| name = "rsa" | ||
| version = "0.1.0" | ||
| authors = ["dignifiedquire <dignifiedquire@gmail.com>"] | ||
| description = "RSA implementation in Rust" | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| authors = ["RustCrypto Developers", "dignifiedquire <dignifiedquire@gmail.com>"] | ||
| description = "Pure Rust RSA implementation" | ||
| license = "MIT OR Apache-2.0" | ||
| homepage = "https://github.com/dignifiedquire/rust-rsa" | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| repository = "https://github.com/dignifiedquire/rust-rsa" | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| documentation = "https://docs.rs/rsa" | ||
| repository = "https://github.com/RustCrypto/RSA" | ||
| keywords = ["rsa", "encryption", "security", "crypto"] | ||
| categories = ["cryptography"] | ||
| [dependencies] | ||
| num-bigint-dig = { version = "0.2", features = ["rand", "i128", "u64_digit"] } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,7 @@ | ||
| # RSA | ||
| [](https://crates.io/crates/rsa) [](https://docs.rs/rsa) [](https://travis-ci.org/RustCrypto/RSA) [](https://deps.rs/repo/github/RustCrypto/RSA) | ||
| > A portable RSA implementation in Rust. | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| A portable RSA implementation in pure Rust. | ||
| :warning: **WARNING:** This library has __not__ been audited, so please do not use for production code. | ||
| @@ -31,4 +32,15 @@ There will be three phases before `1.0` :ship: can be released. | ||
| ## License | ||
| MIT or Apache 2.0 | ||
This comment was marked as spam.Sorry, something went wrong. Uh oh!There was an error while loading. Please reload this page. | ||
| Licensed under either of | ||
| * [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) | ||
| * [MIT license](http://opensource.org/licenses/MIT) | ||
| at your option. | ||
| ### Contribution | ||
| Unless you explicitly state otherwise, any contribution intentionally submitted | ||
| for inclusion in the work by you, as defined in the Apache-2.0 license, shall be | ||
| dual licensed as above, without any additional terms or conditions. | ||
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.