blob: ad5ac7de0a5a2e1a9b2a8554ed3e82609e7d287c [file] [log] [blame]
The Android Open Source Projectadc854b2009-03-03 19:28:47 -08001/*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18package org.apache.harmony.security.provider.crypto;
19
Jesse Wilson7365de12010-08-11 15:21:19 -070020import java.security.Provider;
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080021
22/**
Kenny Root342e06a2014-01-31 14:57:04 -080023 * Implementation of Provider for SecureRandom. The implementation supports the
24 * "SHA1PRNG" algorithm described in JavaTM Cryptography Architecture, API
25 * Specification & Reference
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080026 */
27
28public final class CryptoProvider extends Provider {
29
30 private static final long serialVersionUID = 7991202868423459598L;
31
32 /**
33 * Creates a Provider and puts parameters
34 */
35 public CryptoProvider() {
Elliott Hughesad416242011-01-06 18:13:31 -080036 super("Crypto", 1.0, "HARMONY (SHA1 digest; SecureRandom; SHA1withDSA signature)");
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080037
Kenny Root342e06a2014-01-31 14:57:04 -080038 put("SecureRandom.SHA1PRNG",
39 "org.apache.harmony.security.provider.crypto.SHA1PRNG_SecureRandomImpl");
Elliott Hughesb2da4ac2013-04-24 14:58:26 -070040 put("SecureRandom.SHA1PRNG ImplementedIn", "Software");
The Android Open Source Projectadc854b2009-03-03 19:28:47 -080041 }
42}