diff options
| -rw-r--r-- | hash.rs | 8 | ||||
| -rw-r--r-- | pkey.rs | 10 | ||||
| -rw-r--r-- | symm.rs | 8 |
3 files changed, 10 insertions, 16 deletions
@@ -1,8 +1,6 @@ -use std; - -import std::ptr; -import std::str; -import std::vec; +import core::ptr; +import core::str; +import core::vec; export hasher; export hashtype; @@ -1,9 +1,7 @@ -use std; - -import std::ptr; -import std::str; -import std::unsafe; -import std::vec; +import core::ptr; +import core::str; +import core::unsafe; +import core::vec; export pkeyrole, encrypt, decrypt, sign, verify; export pkey, mk_pkey; @@ -1,8 +1,6 @@ -use std; - -import std::ptr; -import std::str; -import std::vec; +import core::ptr; +import core::str; +import core::vec; export crypter; export cryptermode; |