crypto2 icon indicating copy to clipboard operation
crypto2 copied to clipboard

The fastest cryptographic library in the galaxy

Results 7 crypto2 issues
Sort by recently updated
recently updated
newest added

java code ``` public static String AESEncrypt(String plainText, SecretKey key) throws NoSuchPaddingException, NoSuchAlgorithmException, InvalidKeyException, BadPaddingException, IllegalBlockSizeException { if (ObjectUtils.isEmpty(plainText)) return plainText; Cipher aesCipher = Cipher.getInstance("AES"); aesCipher.init(Cipher.ENCRYPT_MODE, key); return Base64.getEncoder().encodeToString(aesCipher.doFinal(plainText.getBytes())); }...

It can only be compiled on nighltly rustc for now,when will it be available on stable Rust?

question

Ref: https://stackoverflow.com/questions/55963736/switching-endianness-on-arm

bug

``` error: range is out of bounds --> src/blockmode/gcm_siv.rs:114:28 | 21 | / macro_rules! impl_block_cipher_with_gcm_siv_mode { 22 | | ($name:tt, $cipher:tt) => { 23 | | 24 | | #[derive(Clone)]...

![图片](https://user-images.githubusercontent.com/7822648/114762665-924a5e00-9d94-11eb-80eb-24709bbe9dea.png)

> The fastest cryptographic library in the galaxy Proof?