Questions tagged [camellia]

Camellia is a 128 bit block cipher. Question not related to programming that are about the cipher are best asked on crypto.stackexchange.com

5 questions
2
votes
1 answer

Camellia Key Schedule Sigmas

Camellia uses 6 sigmas in its key schedule with values Sigma1 = 0xA09E667F3BCC908B; Sigma2 = 0xB67AE8584CAA73B2; Sigma3 = 0xC6EF372FE94F82BE; Sigma4 = 0x54FF53A5F1D36F1C; Sigma5 = 0x10E527FADE682D1D; Sigma6 = 0xB05688C2B3E6C1FD; The…
crypt
  • 143
  • 11
1
vote
1 answer

Access Violation when using OpenSSL's Camellia

I'm trying to write a camellia decryption program in windows using c++ as the language and OpenSSL as the cryptographic provider. When attempting to execute the code I get the following error Exception thrown at 0x00007FFABB31AEF8…
1
vote
3 answers

How to provide the correct key for Camellia cipher and encrypt in Java

I want build program with plain text ="hello i'm jhon" then encrypt to cipher text and then decrypt to plain text again. So first I search and get code from internet with format data integer. I found camellia-java-BSD-1.0.1.tar.gz from here. So…
alva
  • 9
  • 6
0
votes
1 answer

How to encrypt & decrypt using Camellia 128bit in Android JAVA code?

What is the provider name syntax for Camellia 128bit in Android JAVA code?? i try to change from Cipher.getInstance("AES/CBC/PKCS7Padding") into Cipher.getInstance("Camellia/CBC/PKCS7Padding","BC") but it says Provider BC does not provide…
0
votes
1 answer

How to encrypt String using Camellia 128-bit Encryption Algorithm in Java?

Im currently trying to develop a chat application that implement Camellia 128-bit as its encryption algorithm. I succesfully build and run the code from it official page [here][1]. The problem is the algorithm encrypt for Integer datatype. When im…