- Sort Score
- Result 10 results
- Languages All
Results 211 - 220 of 443 for encrypto (0.12 sec)
-
internal/auth/credentials.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package auth import ( "crypto/rand" "crypto/subtle" "encoding/base64" "encoding/json" "errors" "fmt" "io" "strconv" "strings" "time" jwtgo "github.com/golang-jwt/jwt/v4" "github.com/minio/minio/internal/jwt" )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue May 28 17:14:16 UTC 2024 - 12K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
protected String createUserCodeFromUserId(String userCode) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher(); userCode = cipher.encrypt(userCode); if (fessConfig.isValidUserCode(userCode)) { return userCode; } return null; } public void deleteUserCodeFromCookie(final HttpServletRequest request) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 8.5K bytes - Viewed (0) -
architecture/ambient/peer-authentication.md
# PeerAuthentication Implementation in Ambient
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Aug 01 20:04:20 UTC 2024 - 3.9K bytes - Viewed (0) -
api/go1.3.txt
pkg compress/gzip, method (*Reader) Reset(io.Reader) error pkg crypto/tls, const CurveP256 = 23 pkg crypto/tls, const CurveP256 CurveID pkg crypto/tls, const CurveP384 = 24 pkg crypto/tls, const CurveP384 CurveID pkg crypto/tls, const CurveP521 = 25 pkg crypto/tls, const CurveP521 CurveID pkg crypto/tls, func DialWithDialer(*net.Dialer, string, string, *Config) (*Conn, error) pkg crypto/tls, func NewLRUClientSessionCache(int) ClientSessionCache
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jun 02 02:45:00 UTC 2014 - 117K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
} } if (!globalThis.path) { globalThis.path = { resolve(...pathSegments) { return pathSegments.join("/"); } } } if (!globalThis.crypto) { throw new Error("globalThis.crypto is not available, polyfill required (crypto.getRandomValues only)"); } if (!globalThis.performance) { throw new Error("globalThis.performance is not available, polyfill required (performance.now only)"); }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Aug 30 19:15:21 UTC 2024 - 16.5K bytes - Viewed (0) -
internal/crypto/key_test.go
// // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package crypto import ( "bytes" "crypto/rand" "encoding/hex" "io" "testing" "github.com/minio/minio/internal/logger" ) var shortRandom = func(limit int64) io.Reader { return io.LimitReader(rand.Reader, limit) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jul 12 20:51:54 UTC 2024 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
/** * @return whether signatures are enforced from either side * @throws SmbException */ boolean isSigningEnforced () throws SmbException; /** * @return the encryption key used by the server */ byte[] getServerEncryptionKey (); /** * @param ctx * @return session */ SmbSession getSmbSession ( CIFSContext ctx );
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3K bytes - Viewed (0) -
api/go1.txt
pkg container/ring, type Ring struct, Value interface{} pkg crypto, const MD4 Hash pkg crypto, const MD5 Hash pkg crypto, const MD5SHA1 Hash pkg crypto, const RIPEMD160 Hash pkg crypto, const SHA1 Hash pkg crypto, const SHA224 Hash pkg crypto, const SHA256 Hash pkg crypto, const SHA384 Hash pkg crypto, const SHA512 Hash pkg crypto, func RegisterHash(Hash, func() hash.Hash) pkg crypto, method (Hash) Available() bool
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 14 18:58:28 UTC 2013 - 1.7M bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.exception; import javax.crypto.BadPaddingException; /** * @author shinsuke * */ public class BadPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1008 bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.core.exception; import javax.crypto.IllegalBlockSizeException; /** * @author shinsuke * */ public class IllegalBlockSizeRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1K bytes - Viewed (0)