]> Repositorios git - scryer-prolog.git/commitdiff
indicate deprecated functionality
authorMarkus Triska <[email protected]>
Sat, 16 Mar 2024 20:23:12 +0000 (21:23 +0100)
committerMarkus Triska <[email protected]>
Sat, 16 Mar 2024 20:23:12 +0000 (21:23 +0100)
src/lib/crypto.pl

index fc11808e0bcb713fa401a7a8695edb215b05409d..1df4a411e8c9d55051587697026cfe96188c8afa 100644 (file)
@@ -664,6 +664,8 @@ crypto_data_decrypt(CipherText0, Algorithm, Key, IV, PlainText, Options) :-
 encoding_chars(octet, Bs, Cs) :-
         must_be(list, Bs),
         (   maplist(integer, Bs) ->
+            % the ability to use integers is deprecated and a
+            % candidate for removal in the future!
             maplist(char_code, Cs, Bs)
         ;   Bs = Cs
         ),