Path: csiph.com!fu-berlin.de!uni-berlin.de!individual.net!not-for-mail From: "J.O. Aho" Newsgroups: alt.php,comp.lang.java.help Subject: Re: OT: Convert from php to java / kotlin Followup-To: comp.lang.java.help Date: Thu, 4 Nov 2021 14:57:19 +0100 Lines: 34 Message-ID: References: <6183c621$0$519$65785112@news.neostrada.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: individual.net 1gbTlbTibwKjiI9M7fSx/QYHvZ3Z+PlQZFVyvYJTztJGzZp7Wv Cancel-Lock: sha1:G1QjLC9tcBE6E31VzoAOVht/Ex0= User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.2.1 Content-Language: en-US-large In-Reply-To: <6183c621$0$519$65785112@news.neostrada.pl> Xref: csiph.com alt.php:3287 comp.lang.java.help:4348 On 04/11/2021 12.37, Jakub wrote: > > I have this function in php > > >  function encrypt_decrypt($action, $string) >  { >      ... >  } Not the best function, specially when you have to tell what it should do, I would recommend to split things out in two functions, one for encryption and another for decryption. Keys either as a argument or set in the class object. > how to translate to kotlin / java at android? This is off topic here, as this ain't a java newsgroup, maybe comp.lang.java.help could be the place where to ask help to convert it to kotlin. using a search engine should have given you this page (or other similar pages): https://stackoverflow.com/questions/49340005/encrypt-decrypt-string-kotlin More or less the code you asked for, except it's split into two functions, which makes it clearer what the function is meant to do. -- //Aho