ConceptsShared: add a default implementation of BlockMode CryptographicOperation#getBlockMode() for compatibility with external code

This commit is contained in:
Alex Ford 2023-02-03 14:39:32 +00:00
Родитель b968b59afc
Коммит 6c35feaa98
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -78,7 +78,7 @@ module Cryptography {
* This may have no result - for example if the `CryptographicAlgorithm` used
* is a stream cipher rather than a block cipher.
*/
abstract BlockMode getBlockMode();
BlockMode getBlockMode() { none() }
}
}

Просмотреть файл

@ -78,7 +78,7 @@ module Cryptography {
* This may have no result - for example if the `CryptographicAlgorithm` used
* is a stream cipher rather than a block cipher.
*/
abstract BlockMode getBlockMode();
BlockMode getBlockMode() { none() }
}
}

Просмотреть файл

@ -78,7 +78,7 @@ module Cryptography {
* This may have no result - for example if the `CryptographicAlgorithm` used
* is a stream cipher rather than a block cipher.
*/
abstract BlockMode getBlockMode();
BlockMode getBlockMode() { none() }
}
}